From a9f62250fcb02e8fc9895c93970cde55a3be0c7a Mon Sep 17 00:00:00 2001
From: Henning Leutz <leutz@pcsg.de>
Date: Wed, 20 Jan 2021 13:04:25 +0100
Subject: [PATCH] refactor: php 7.2 comp

---
 src/QUI/Bricks/Brick.php   | 10 +++++-----
 src/QUI/Bricks/Manager.php |  6 +++---
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/QUI/Bricks/Brick.php b/src/QUI/Bricks/Brick.php
index fab9cf4..397f3f4 100644
--- a/src/QUI/Bricks/Brick.php
+++ b/src/QUI/Bricks/Brick.php
@@ -37,33 +37,33 @@ class Brick extends QUI\QDOM
      *
      * @var array
      */
-    protected array $settings = [];
+    protected $settings = [];
 
     /**
      * Fields can be overwritten by another user
      *
      * @var array
      */
-    protected array $customfields = [];
+    protected $customfields = [];
 
     /**
      * Internal control
      *
      * @var null|QUI\Control
      */
-    protected ?QUI\Control $Control = null;
+    protected $Control = null;
 
     /**
      * List of extra css classes
      *
      * @var array
      */
-    protected array $cssClasses = [];
+    protected $cssClasses = [];
 
     /**
      * @var string
      */
-    protected string $hash;
+    protected $hash;
 
     /**
      * Constructor
diff --git a/src/QUI/Bricks/Manager.php b/src/QUI/Bricks/Manager.php
index f7e7d5d..571575c 100644
--- a/src/QUI/Bricks/Manager.php
+++ b/src/QUI/Bricks/Manager.php
@@ -38,21 +38,21 @@ class Manager
      *
      * @var array
      */
-    protected array $bricks = [];
+    protected $bricks = [];
 
     /**
      * Brick UID temp collector
      *
      * @var array
      */
-    protected array $brickUIDs = [];
+    protected $brickUIDs = [];
 
     /**
      * Initialized brick manager
      *
      * @var null|Manager
      */
-    public static ?Manager $BrickManager = null;
+    public static $BrickManager = null;
 
     /**
      * Return the global QUI\Bricks\Manager
-- 
GitLab