version fixes
[civicrm-core.git] / CRM / Core / QuickForm / Action / Submit.php
index 7becd87e3a95561f696a8ef41ea399e612f027a5..4f913401a64d5809f978d457ca3d901c6e964f7d 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * Redefine the submit action.
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
 class CRM_Core_QuickForm_Action_Submit extends CRM_Core_QuickForm_Action {
 
   /**
-   * Class constructor
+   * Class constructor.
    *
    * @param object $stateMachine
    *   Reference to state machine object.
    *
    * @return \CRM_Core_QuickForm_Action_Submit
-  @access public
    */
   public function __construct(&$stateMachine) {
     parent::__construct($stateMachine);
@@ -84,4 +83,5 @@ class CRM_Core_QuickForm_Action_Submit extends CRM_Core_QuickForm_Action {
       return $page->handle('display');
     }
   }
+
 }