X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FExport%2FStateMachine%2FStandalone.php;h=375013a7f73dcb78ba9be24ed9c7571ef8bc989f;hb=6b5dfd14377463ae9a2cce380113be72cdbd00e8;hp=de1b77ca11653452c8ebb36c1a6c9e9b574e9386;hpb=5fe22fa0c0431178becb18967f4c17bfcff694bb;p=civicrm-core.git diff --git a/CRM/Export/StateMachine/Standalone.php b/CRM/Export/StateMachine/Standalone.php index de1b77ca11..375013a7f7 100644 --- a/CRM/Export/StateMachine/Standalone.php +++ b/CRM/Export/StateMachine/Standalone.php @@ -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); }