stylistic repair
[civicrm-core.git] / CRM / Case / Form / ActivityChangeStatus.php
index 6182d79ef743e42244489ea8cdb047ccc5e8ad1c..8c51e5f322688b0255bcefaa400c72e7670ba235 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
 class CRM_Case_Form_ActivityChangeStatus extends CRM_Core_Form {
 
   /**
-   * Function to build the form
+   * Build the form object
    *
    * @return void
-   * @access public
    */
   public function buildQuickForm() {
     $activityStatus = CRM_Core_PseudoConstant::activityStatus();
     $this->add('select', 'activity_change_status', ts('New Status'), $activityStatus);
   }
-}
 
+}