From 622b69f82d105f1589ecd51dfb168e90e0f3f755 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Wed, 12 Aug 2026 15:26:54 -0400 Subject: [PATCH] fix typeerror --- src/Potter/Environment/Behaviour.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Potter/Environment/Behaviour.php b/src/Potter/Environment/Behaviour.php index 242af57..bc41f4f 100644 --- a/src/Potter/Environment/Behaviour.php +++ b/src/Potter/Environment/Behaviour.php @@ -21,7 +21,7 @@ trait Behaviour ->required(['APPLICATION_NAME']); } - private static function getEnvironment(Container $container): Environment + private static function getEnvironment(Container $container): \Dotenv\Dotenv { return $container->get(Environment::class); }