From 567ad5c5df5b535e464a7ba2710973ab72e8f8d5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 31 May 2023 12:03:54 +0000 Subject: [PATCH] fix getters/setters --- Controller/Controller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Controller/Controller.php b/Controller/Controller.php index 2c9473d..27eda5b 100755 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -64,7 +64,7 @@ class Controller extends ModuleAbstract * @var string[] * @since 1.0.0 */ - protected static array $localization = [ + public static array $localization = [ ]; /** @@ -73,7 +73,7 @@ class Controller extends ModuleAbstract * @var string[] * @since 1.0.0 */ - protected static array $providing = [ + public static array $providing = [ 'Navigation', ]; @@ -83,5 +83,5 @@ class Controller extends ModuleAbstract * @var string[] * @since 1.0.0 */ - protected static array $dependencies = []; + public static array $dependencies = []; }