INFRA-132 - Spaces around "."
[civicrm-core.git] / CRM / Price / Form / DeleteField.php
index 999320f0841fe34cf1cbdfa07f8a0a6b69b03ec8..98189077595bf0e8fc822de0abe0eb23a90f8e49 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -39,7 +39,7 @@
 class CRM_Price_Form_DeleteField extends CRM_Core_Form {
 
   /**
-   * the field id
+   * The field id
    *
    * @var int
    */
@@ -53,13 +53,14 @@ class CRM_Price_Form_DeleteField extends CRM_Core_Form {
   protected $_title;
 
   /**
-   * set up variables to build the form
+   * Set up variables to build the form
    *
    * @param null
    *
    * @return void
    * @acess protected
-   */ function preProcess() {
+   */
+  function preProcess() {
     $this->_fid = $this->get('fid');
 
     $this->_title = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField',
@@ -73,12 +74,11 @@ class CRM_Price_Form_DeleteField extends CRM_Core_Form {
   }
 
   /**
-   * Function to actually build the form
+   * Build the form object
    *
    * @param null
    *
    * @return void
-   * @access public
    */
   public function buildQuickForm() {
     $this->addButtons(array(
@@ -101,7 +101,6 @@ class CRM_Price_Form_DeleteField extends CRM_Core_Form {
    * @param null
    *
    * @return void
-   * @access public
    */
   public function postProcess() {
 
@@ -110,4 +109,3 @@ class CRM_Price_Form_DeleteField extends CRM_Core_Form {
     }
   }
 }
-