minor phpcs updates
authorEileen McNaughton <eileen@fuzion.co.nz>
Tue, 26 May 2015 04:02:03 +0000 (16:02 +1200)
committerEileen McNaughton <eileen@fuzion.co.nz>
Thu, 28 May 2015 00:43:42 +0000 (12:43 +1200)
28 files changed:
CRM/Contribute/Form/AbstractEditPayment.php
CRM/Contribute/Form/AdditionalInfo.php
CRM/Contribute/Form/AdditionalPayment.php
CRM/Contribute/Form/Contribution/ThankYou.php
CRM/Contribute/Form/ContributionPage.php
CRM/Contribute/Form/ContributionPage/AddProduct.php
CRM/Contribute/Form/ContributionPage/Amount.php
CRM/Contribute/Form/ContributionPage/Custom.php
CRM/Contribute/Form/ContributionPage/Delete.php
CRM/Contribute/Form/ContributionPage/Premium.php
CRM/Contribute/Form/ContributionPage/Settings.php
CRM/Contribute/Form/ContributionPage/TabHeader.php
CRM/Contribute/Form/ContributionPage/ThankYou.php
CRM/Contribute/Form/ContributionPage/Widget.php
CRM/Contribute/Form/ManagePremiums.php
CRM/Contribute/Form/SoftCredit.php
CRM/Contribute/Form/Task/Batch.php
CRM/Contribute/Form/Task/Delete.php
CRM/Contribute/Form/Task/Email.php
CRM/Contribute/Form/Task/Invoice.php
CRM/Contribute/Form/Task/PDF.php
CRM/Contribute/Form/Task/PDFLetter.php
CRM/Contribute/Form/Task/PDFLetterCommon.php
CRM/Contribute/Form/Task/PickProfile.php
CRM/Contribute/Form/Task/Print.php
CRM/Contribute/Form/Task/Result.php
CRM/Contribute/Form/Task/SearchTaskHookSample.php
CRM/Contribute/Form/Task/Status.php

index f7cc453199942e57729ca8243fae16c1ebb354b1..84bd43fac1992e05498b716553734880d6a8ee4e 100644 (file)
@@ -577,7 +577,7 @@ LEFT JOIN  civicrm_contribution on (civicrm_contribution.contact_id = civicrm_co
   }
 
   /**
-   * @param $submittedValues
+   * @param array $submittedValues
    *
    * @return mixed
    */
index ec8246020f208b622148aac321f8bec464a30805..dab9329c83a2da2c44b97c1cf8ff4676171fd20b 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Form_AdditionalInfo {
 
index ff5d5ea764715ddaf7574f4d80f9f23afad792b3..1ae7a5d275c1323483cb4f1ee188bc4f683eb39b 100644 (file)
@@ -34,9 +34,7 @@
  */
 
 /**
- * This form records additional payments needed when
- * event/contribution is partially paid
- *
+ * This form records additional payments needed when event/contribution is partially paid.
  */
 class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_AbstractEditPayment {
   public $_contributeMode = 'direct';
index 07973821ab7e3d9adf34070923a4b800b2aa3d1e..9a7879792406ea0da91f0e419d5b5078bb40e024 100644 (file)
@@ -45,8 +45,6 @@ class CRM_Contribute_Form_Contribution_ThankYou extends CRM_Contribute_Form_Cont
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preProcess();
index 200c6d0b11fd5f5809887a461ac6cb98166f3080..be559ae91a24494745ba2be1c2afa0eb8e1fe4d2 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * form to process actions on the group aspect of Custom Data
+ * Contribution Page form.
  */
 class CRM_Contribute_Form_ContributionPage extends CRM_Core_Form {
 
index 5b8a0ddd43d60ebd6f20e0ac24bafa7a58d80b94..8964769daae9ae29a2a4582e7998ed9d4d45ea15 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -43,10 +41,7 @@ class CRM_Contribute_Form_ContributionPage_AddProduct extends CRM_Contribute_For
   protected $_pid;
 
   /**
-   * Pre  process the form.
-   *
-   *
-   * @return void
+   * Pre process the form.
    */
   public function preProcess() {
     parent::preProcess();
index c180d10ac7cbcef06a6303218786aa9922fe2ea2..64f2e03adddf527376b87727a8cae932feb1f5e1 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index ff76aaaa46474d6f1eccab1aeb2c20abbf8b9b47..dc53fff2d31706cdec63bc4ad1a64b3c3c365b6e 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index a21c8a312b90cce342deddd027e0376071f5e6a4..6525d6d7b9661617468497d0591402ffac2dfa5f 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -104,8 +102,6 @@ class CRM_Contribute_Form_ContributionPage_Delete extends CRM_Contribute_Form_Co
 
   /**
    * Process the form when submitted.
-   *
-   * @return void
    */
   public function postProcess() {
     $transaction = new CRM_Core_Transaction();
index 47c3b001a60d34cfdf332d1253576be6a098665f..5c843ee07f7c144503c5b3964fb6b4e66800a50c 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * form to process actions on Premiums
+ * Form to process actions on Premiums.
  */
 class CRM_Contribute_Form_ContributionPage_Premium extends CRM_Contribute_Form_ContributionPage {
 
   /**
    * Set default values for the form. Note that in edit/view mode
    * the default values are retrieved from the database
-   *
-   *
-   * @return void
    */
   public function setDefaultValues() {
     $defaults = array();
index a9dbc7541f51d7d956be4e05d808abf032067a41..9e62e59f4ea29e8939216ebd2a2283a563766216 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Form_ContributionPage_Settings extends CRM_Contribute_Form_ContributionPage {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preProcess();
index 39e712c898e0dc598aa1cb776e7f04bca8683d3a..408c81d019f61b73a40708cb3bf28e70c0389a9f 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * Helper class to build navigation links
+ * Helper class to build navigation links.
  */
 class CRM_Contribute_Form_ContributionPage_TabHeader {
   /**
index 31a9185aa5829d63194d990d86ca179039232687..a110510d6c539166c7b79623599fae36a629a1b6 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * form to configure thank-you messages and receipting features for an online contribution page
+ * Form to configure thank-you messages and receipting features for an online contribution page.
  */
 class CRM_Contribute_Form_ContributionPage_ThankYou extends CRM_Contribute_Form_ContributionPage {
 
index e404cd185ba406f39b6c6457dd0d670384e4882d..63a9a752c71321ab72cd3fc1036f79dfeb7e5886 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Form_ContributionPage_Widget extends CRM_Contribute_Form_ContributionPage {
   protected $_colors;
index 9441995a601ab6f54bcd538c9ccfcdc941a0d15c..e6d76a77d3337f3635d45498c439f8bff1d7c5f3 100644 (file)
 class CRM_Contribute_Form_ManagePremiums extends CRM_Contribute_Form {
 
   /**
-   * Pre  process the form.
-   *
-   *
-   * @return void
+   * Pre process the form.
    */
   public function preProcess() {
     parent::preProcess();
index cfaca3e08f84354e8eb6f9d0fb4c1a851028d82f..bdf05ba55c56fbb03187b530598ca082cc9fad36 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class build form elements for select existing or create new soft block
+ * This class build form elements for select existing or create new soft block.
  */
 class CRM_Contribute_Form_SoftCredit {
 
index 3bfb76a318fd0783e80dd4bfc505ed82bbf8de43..48bb6376ceda29ebaa3b4a83b6280f41bbdb5c5f 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality for batch profile update for contributions
+ * This class provides the functionality for batch profile update for contributions.
  */
 class CRM_Contribute_Form_Task_Batch extends CRM_Contribute_Form_Task {
 
index deaf7cfcfba99775bb8719f71f0582fc42b6947f..4cdfcd76ada9c57234c54114fa50390f93a3bf9c 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality to delete a group of
- * contributions. This class provides functionality for the actual
- * deletion.
+ * This class provides the functionality to delete a group of contributions.
+ *
+ * This class provides functionality for the actual deletion.
  */
 class CRM_Contribute_Form_Task_Delete extends CRM_Contribute_Form_Task {
 
index 27993a5eddc9780bc28617faa0321f685ca80b4a..7e7d5ca7bf4163875d9260ba3113522fbc8e1b50 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id: Email.php 45499 2013-02-08 12:31:05Z kurund $
- *
  */
 
 /**
- * This class provides the functionality to email a group of
- * contacts.
+ * This class provides the functionality to email a group of contacts.
  */
 class CRM_Contribute_Form_Task_Email extends CRM_Contribute_Form_Task {
 
index 774d555f4b0fe886222e28538ace545ff6524e97..58e927eded6b674d64672adab976145c261875fc 100644 (file)
@@ -29,7 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- *
  */
 
 /**
index 12b611428d1d7c1a83d73dd56039e9a9a7a6301a..a4b02f680159d3b3c59432aa18e41299679f2c1b 100644 (file)
@@ -102,9 +102,6 @@ AND    {$this->_componentClause}";
 
   /**
    * Build the form object.
-   *
-   *
-   * @return void
    */
   public function buildQuickForm() {
 
index 5c05b70060ee99540e427eae5cae868e6b0b4397..7dbf5fbcf1a3c28a88b095c71b211b507a69121a 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality to create PDF letter for a group of
- * contacts or a single contact.
+ * This class provides the functionality to create PDF letter for a group of contacts or a single contact.
  */
 class CRM_Contribute_Form_Task_PDFLetter extends CRM_Contribute_Form_Task {
 
index d95aed8cf46b78e2163847b20bece865430d9d73..9e36d0db2513fa96556fa4e286199c7a7217481a 100644 (file)
@@ -9,10 +9,7 @@ class CRM_Contribute_Form_Task_PDFLetterCommon extends CRM_Contact_Form_Task_PDF
   /**
    * Process the form after the input has been submitted and validated.
    *
-   *
    * @param CRM_Contribute_Form_Task $form
-   *
-   * @return void
    */
   public static function postProcess(&$form) {
     list($formValues, $categories, $html_message, $messageToken, $returnProperties) = self::processMessageTemplate($form);
index 71b2bc3c14abd2f6831aabc2f3b12fc2c5457bd3..acbaea1ea73d00646269e8665e2e88dfc9ff4e24 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality for batch profile update for contribution
+ * This class provides the functionality for batch profile update for contributions.
  */
 class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
 
index e5a4067ae7cb954064bbeb7e608eae21f6f30cea..800a8e9082f360b5fdbd34d56e454fbecb55ed87 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality to print contribution records
+ * This class provides the functionality to print contribution records.
  */
 class CRM_Contribute_Form_Task_Print extends CRM_Contribute_Form_Task {
 
index 72428d2117f6fffece00251e22b40b089ac9f0e0..bfedf76612fcf33263ff6c8bcbd718b69ad3b9c6 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * Used for displaying results
- *
- *
  */
 class CRM_Contribute_Form_Task_Result extends CRM_Contribute_Form_Task {
 
@@ -50,8 +46,6 @@ class CRM_Contribute_Form_Task_Result extends CRM_Contribute_Form_Task {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $this->addButtons(array(
index 99a1c349309fc0de91582979c1a6d40a77f1a472..c745ae78b39e87192ffe3e21418f00b136a09f83 100644 (file)
@@ -28,8 +28,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index 67e7e8c20ee9608e96f2e0bbaa606668f5ab1a44..5d8d4d26a5753f436f56ceec500bcc8df8f3e027 100644 (file)
@@ -29,7 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- *
  */
 
 /**