From 64f4920b361c042a0bff877f2fd1139363fcaff6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 31 May 2023 12:03:53 +0000 Subject: [PATCH] fix getters/setters --- Controller/BackendController.php | 8 -------- Controller/Controller.php | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) 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 = []; }