Merge pull request #14133 from civicrm/5.13
[civicrm-core.git] / CRM / Core / StateMachine.php
index a78a3e545075e2e5188c4e742b553bfc75fcb476..d4f7407f6fbd83834927a226150fac7a5d0a8e42 100644 (file)
@@ -94,7 +94,7 @@ class CRM_Core_StateMachine {
     $this->_controller = &$controller;
     $this->_action = $action;
 
-    $this->_states = array();
+    $this->_states = [];
   }
 
   /**
@@ -262,7 +262,7 @@ class CRM_Core_StateMachine {
     $this->_pages = &$pages;
     $numPages = count($pages);
 
-    $this->_pageNames = array();
+    $this->_pageNames = [];
     foreach ($pages as $tempName => $value) {
       if (!empty($value['className'])) {
         $this->_pageNames[] = $tempName;