Merge pull request #15590 from alifrumin/subjecthelp
[civicrm-core.git] / CRM / Export / StateMachine / Standalone.php
index de1b77ca11653452c8ebb36c1a6c9e9b574e9386..375013a7f73dcb78ba9be24ed9c7571ef8bc989f 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 5                                                  |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2018                                |
+ | Copyright CiviCRM LLC (c) 2004-2019                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2018
+ * @copyright CiviCRM LLC (c) 2004-2019
  */
 class CRM_Export_StateMachine_Standalone extends CRM_Core_StateMachine {
 
@@ -41,10 +41,10 @@ class CRM_Export_StateMachine_Standalone extends CRM_Core_StateMachine {
   public function __construct($controller, $action = CRM_Core_Action::NONE) {
     parent::__construct($controller, $action);
 
-    $this->_pages = array(
+    $this->_pages = [
       'CRM_Export_Form_Select' => NULL,
       'CRM_Export_Form_Map' => NULL,
-    );
+    ];
 
     $this->addSequentialPages($this->_pages, $action);
   }