From 7c0b0204aa90064846adec933711ee389eee602f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 22 Sep 2018 17:05:23 +0200 Subject: [PATCH] Improve array init --- Controller/BackendController.php | 3 +-- Controller/Controller.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 0122eb3..5d6f9b1 100644 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -89,8 +89,7 @@ class BackendController extends Controller * @var string[] * @since 1.0.0 */ - protected static $dependencies = [ - ]; + protected static $dependencies = []; /** * @param RequestAbstract $request Request diff --git a/Controller/Controller.php b/Controller/Controller.php index d8398d0..2aa713d 100644 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -89,6 +89,5 @@ class Controller extends ModuleAbstract implements WebInterface * @var string[] * @since 1.0.0 */ - protected static $dependencies = [ - ]; + protected static $dependencies = []; }