Merge pull request #17836 from seamuslee001/dev_core_1874
[civicrm-core.git] / Civi.php
index ebd09e8afec737e387d067a398a7a6c79e51f439..95009e35c3fd3df36ba03e43dca7b844d78b9818 100644 (file)
--- a/Civi.php
+++ b/Civi.php
@@ -19,11 +19,11 @@ class Civi {
   /**
    * A central location for static variable storage.
    * @var array
-   * @code
+   * ```
    * `Civi::$statics[__CLASS__]['foo'] = 'bar';
-   * @endcode
+   * ```
    */
-  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();
   }