X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=Civi.php;h=95009e35c3fd3df36ba03e43dca7b844d78b9818;hb=ffc370ffa721fecfaee7cd615119412f5bbf6e67;hp=ebd09e8afec737e387d067a398a7a6c79e51f439;hpb=64c50b693785c6c7ed9a9a7fe8f360e8dc667ab0;p=civicrm-core.git diff --git a/Civi.php b/Civi.php index ebd09e8afe..95009e35c3 100644 --- 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(); }