Merge pull request #17836 from seamuslee001/dev_core_1874
[civicrm-core.git] / Civi.php
index e52dd1614849e230584e55ccfbdb6b1733d67e3a..95009e35c3fd3df36ba03e43dca7b844d78b9818 100644 (file)
--- a/Civi.php
+++ b/Civi.php
@@ -23,7 +23,7 @@ class Civi {
    * `Civi::$statics[__CLASS__]['foo'] = 'bar';
    * ```
    */
-  public static $statics = array();
+  public static $statics = [];
 
   /**
    * Retrieve a named cache instance.
@@ -106,7 +106,7 @@ class Civi {
    * singletons, containers.
    */
   public static function reset() {
-    self::$statics = array();
+    self::$statics = [];
     Civi\Core\Container::singleton();
   }