X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FGlobalStack.php;h=0884e3b134c454075ec43985e31ebadf49e60331;hb=9ea8e8dbf8676ea9714681f52a669409705083fe;hp=61e3ac5fbbb8adc421c85ecbb7802915b0c5b8db;hpb=aa31a7a02e13acfc02a1519de90017ebff06e42d;p=civicrm-core.git diff --git a/CRM/Utils/GlobalStack.php b/CRM/Utils/GlobalStack.php index 61e3ac5fbb..0884e3b134 100644 --- a/CRM/Utils/GlobalStack.php +++ b/CRM/Utils/GlobalStack.php @@ -55,14 +55,14 @@ class CRM_Utils_GlobalStack { */ private static $_singleton = NULL; - private $backups = array(); + private $backups = []; /** * Get or set the single instance of CRM_Utils_GlobalStack. * * @return CRM_Utils_GlobalStack */ - static public function singleton() { + public static function singleton() { if (self::$_singleton === NULL) { self::$_singleton = new CRM_Utils_GlobalStack(); } @@ -88,7 +88,7 @@ class CRM_Utils_GlobalStack { * frame */ public function createBackup($new) { - $frame = array(); + $frame = []; foreach ($new as $globalKey => $values) { if (is_array($values)) { foreach ($values as $key => $value) {