additional formatting fixes picked up by CI
authorEileen McNaughton <eileen@fuzion.co.nz>
Wed, 4 Feb 2015 00:58:49 +0000 (13:58 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Wed, 4 Feb 2015 00:58:49 +0000 (13:58 +1300)
CRM/Admin/Form/WordReplacements.php

index 5b5ffba0f0fe0882505e9fc59ccd5d00560121e8..be54abf33dcca183b827ff2d51cafe1abdb366e7 100644 (file)
@@ -30,7 +30,6 @@
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
- *
  */
 class CRM_Admin_Form_WordReplacements extends CRM_Core_Form {
   protected $_numStrings = 10;
@@ -41,6 +40,9 @@ class CRM_Admin_Form_WordReplacements extends CRM_Core_Form {
 
   public $unsavedChangesWarn = TRUE;
 
+  /**
+   * Pre process function.
+   */
   public function preProcess() {
     // This controller was originally written to CRUD $config->locale_custom_strings,
     // but that's no longer the canonical store. Re-sync from canonical store to ensure
@@ -53,6 +55,8 @@ class CRM_Admin_Form_WordReplacements extends CRM_Core_Form {
   }
 
   /**
+   * Set default values.
+   *
    * @return array
    */
   public function setDefaultValues() {
@@ -107,8 +111,6 @@ class CRM_Admin_Form_WordReplacements extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $config = CRM_Core_Config::singleton();
@@ -205,9 +207,6 @@ class CRM_Admin_Form_WordReplacements extends CRM_Core_Form {
 
   /**
    * Process the form submission.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     $params = $this->controller->exportValues($this->_name);
@@ -273,4 +272,5 @@ class CRM_Admin_Form_WordReplacements extends CRM_Core_Form {
       ));
     }
   }
+
 }