Merge pull request #3811 from colemanw/dynPath
[civicrm-core.git] / CRM / Core / QuickForm / Action.php
index db3819965f761e93afc23575674a1962bcf1a247..5ba26e44160fa0ee0315cb13fa8df8b4ce3aae90 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.                                    |
  |                                                                    |
  * integrated with the StateMachine, Controller and State objects
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
 require_once 'HTML/QuickForm/Action.php';
+
+/**
+ * Class CRM_Core_QuickForm_Action
+ */
 class CRM_Core_QuickForm_Action extends HTML_QuickForm_Action {
 
   /**
@@ -46,11 +50,12 @@ class CRM_Core_QuickForm_Action extends HTML_QuickForm_Action {
   /**
    * constructor
    *
-   * @param object    $stateMachine    reference to state machine object
+   * @param object $stateMachine reference to state machine object
    *
-   * @return object
-   * @access public
-   */ function __construct(&$stateMachine) {
+   * @return \CRM_Core_QuickForm_Action
+  @access public
+   */
+  function __construct(&$stateMachine) {
     $this->_stateMachine = &$stateMachine;
   }