From af5ca24364c4cbfb04b1b9bcb952415a18ba9348 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Wed, 12 Aug 2026 15:21:22 -0400 Subject: [PATCH] spacing --- src/Potter/Environment/Behaviour.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Potter/Environment/Behaviour.php b/src/Potter/Environment/Behaviour.php index 5540b31..242af57 100644 --- a/src/Potter/Environment/Behaviour.php +++ b/src/Potter/Environment/Behaviour.php @@ -11,14 +11,14 @@ trait Behaviour private static function addEnvironment(Container $container): void { $container->addShared(Environment::class, function () { - return Environment::createImmutable(getcwd()); - }); + return Environment::createImmutable(getcwd()); }); } private static function addEnvironmentBehaviour(Container $container): void { static::addEnvironment($container); - self::getEnvironment($container)->required(['APPLICATION_NAME']); + self::getEnvironment($container) + ->required(['APPLICATION_NAME']); } private static function getEnvironment(Container $container): Environment