diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 5eaa5bf..8378e49 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -47,14 +47,6 @@ use phpOMS\Views\View; */ final class BackendController extends Controller { - /** - * Dependencies. - * - * @var string[] - * @since 1.0.0 - */ - protected static array $dependencies = []; - use FileUploaderTrait; /** diff --git a/Controller/Controller.php b/Controller/Controller.php index 8fbfb6d..d06ffaf 100755 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -72,7 +72,7 @@ class Controller extends ModuleAbstract * @var string[] * @since 1.0.0 */ - protected static array $providing = []; + public static array $providing = []; /** * Dependencies. @@ -80,5 +80,5 @@ class Controller extends ModuleAbstract * @var string[] * @since 1.0.0 */ - protected static array $dependencies = []; + public static array $dependencies = []; }