CRM-14897 - fix adminGroup for Cleanup Caches so it appears properly in admin console.
[civicrm-core.git] / CRM / Core / State.php
index 6aa6747a70a9e04aaebba0fbc8105041f161f4cc..48d67bbb9c9a5f342fc443f1a90d432fcdc2a783 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -32,7 +32,7 @@
  * things like going back / stepping forward / process etc
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
@@ -79,14 +79,20 @@ class CRM_Core_State {
   /**
    * constructor
    *
-   * @param string the internal name of the state
-   * @param int    the state type
-   * @param object the state that precedes this state
-   * @param object the state that follows  this state
-   * @param object the statemachine that this states belongs to
+   * @param $name
+   * @param $type
+   * @param $back
+   * @param $next
+   * @param $stateMachine
    *
-   * @return object
-   * @access public
+   * @internal param \the $string internal name of the state
+   * @internal param \the $int state type
+   * @internal param \the $object state that precedes this state
+   * @internal param \the $object state that follows  this state
+   * @internal param \the $object statemachine that this states belongs to
+   *
+   * @return \CRM_Core_State
+  @access public
    */
   function __construct($name, $type, $back, $next, &$stateMachine) {
     $this->_name = $name;