From 4adc20284c2476534252e2b7d3826918e109e801 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Wed, 12 Aug 2026 15:37:20 -0400 Subject: [PATCH] change static to self --- 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 08002ff..cebc557 100644 --- a/src/Potter/Environment/Behaviour.php +++ b/src/Potter/Environment/Behaviour.php @@ -16,7 +16,7 @@ trait Behaviour private static function addEnvironmentBehaviour(Container $container): void { - static::addEnvironment($container); + self::addEnvironment($container); $environment = self::getEnvironment($container); $environment->load(); $environment->required(['APPLICATION_NAME']);