X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUpgrade%2FStateMachine.php;h=89f750e6c950f264d77a0c65b6986fc0cce34e81;hb=fcf467dc52263a0b12ed4faa883a1a4c30a4ce75;hp=072901d67d40a4eb471fa45fb6b2e9c85d8979f4;hpb=1219e6af26646ad548b2d7e97a7f345af4655c21;p=civicrm-core.git diff --git a/CRM/Upgrade/StateMachine.php b/CRM/Upgrade/StateMachine.php index 072901d67d..89f750e6c9 100644 --- a/CRM/Upgrade/StateMachine.php +++ b/CRM/Upgrade/StateMachine.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.6 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2014 | + | Copyright CiviCRM LLC (c) 2004-2015 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -23,31 +23,29 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2014 + * @copyright CiviCRM LLC (c) 2004-2015 * $Id$ * */ /** - * State machine for managing different states of the Import process. - * + * State machine for managing different states of the upgrade process. */ class CRM_Upgrade_StateMachine extends CRM_Core_StateMachine { /** - * Class constructor + * Class constructor. * - * @param object $controller - * @param const $pages - * @param \const|int $action + * @param CRM_Upgrade_Controller $controller + * @param array $pages + * @param int $action * - * @internal param \CRM_Upgrade_Controller_base $object - * @return \CRM_Upgrade_StateMachine CRM_Upgrade_StateMachine_Base + * @return CRM_Upgrade_StateMachine */ public function __construct(&$controller, &$pages, $action = CRM_Core_Action::NONE) { parent::__construct($controller, $action); @@ -56,4 +54,5 @@ class CRM_Upgrade_StateMachine extends CRM_Core_StateMachine { $this->addSequentialPages($this->_pages, $action); } + }