From b5850e4fc32ae08bc7c7d75ed5a3c0a1992a8eda Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Sat, 25 Oct 2025 13:04:35 -0400 Subject: [PATCH] Extend ContainerInterface --- src/Potter/Aware/AwareInterface.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Potter/Aware/AwareInterface.php b/src/Potter/Aware/AwareInterface.php index 48c85c2..30ea32a 100644 --- a/src/Potter/Aware/AwareInterface.php +++ b/src/Potter/Aware/AwareInterface.php @@ -5,8 +5,9 @@ declare(strict_types=1); namespace Potter\Aware; use \Potter\Cloneable\CloneableInterface; +use \Psr\Container\ContainerInterface; -interface AwareInterface extends CloneableInterface +interface AwareInterface extends CloneableInterface, ContainerInterface { public function get(string $key): mixed; public function has(string $key): bool;