Merge pull request #6456 from eileenmcnaughton/CRM-16993
[civicrm-core.git] / CRM / Upgrade / StateMachine.php
index 63b6ec4529471261b0d2178f2b6b4af154435bad..89f750e6c950f264d77a0c65b6986fc0cce34e81 100644 (file)
@@ -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.                                    |
  |                                                                    |
 /**
  *
  * @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.
    *
-   * @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);