From 37b8953e43215c85ac85fdc235c6538549831585 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 17 Mar 2015 17:42:36 +1300 Subject: [PATCH] phpcs fixes --- CRM/Batch/Form/Batch.php | 26 ++++++-------------------- api/v3/Case.php | 2 ++ api/v3/Contribution.php | 2 +- 3 files changed, 9 insertions(+), 21 deletions(-) diff --git a/CRM/Batch/Form/Batch.php b/CRM/Batch/Form/Batch.php index c638178ecf..2c9c2d997d 100755 --- a/CRM/Batch/Form/Batch.php +++ b/CRM/Batch/Form/Batch.php @@ -26,30 +26,22 @@ */ /** - * - * @package CRM - * @copyright CiviCRM LLC (c) 2004-2014 - * $Id$ - * - */ - -/** - * This class generates form components for batch entry - * + * This class generates form components for batch entry. */ class CRM_Batch_Form_Batch extends CRM_Admin_Form { + /** + * PreProcess function. + */ public function preProcess() { parent::preProcess(); - // set the usercontext + // Set the user context. $session = CRM_Core_Session::singleton(); $session->replaceUserContext(CRM_Utils_System::url('civicrm/batch', "reset=1")); } /** * Build the form object. - * - * @return void */ public function buildQuickForm() { parent::buildQuickForm(); @@ -77,15 +69,12 @@ class CRM_Batch_Form_Batch extends CRM_Admin_Form { /** * Set default values for the form. - * - * - * @return void */ public function setDefaultValues() { $defaults = array(); if ($this->_action & CRM_Core_Action::ADD) { - // set batch name default + // Set batch name default. $defaults['title'] = CRM_Batch_BAO_Batch::generateBatchName(); } else { @@ -96,9 +85,6 @@ class CRM_Batch_Form_Batch extends CRM_Admin_Form { /** * Process the form submission. - * - * - * @return void */ public function postProcess() { $params = $this->controller->exportValues($this->_name); diff --git a/api/v3/Case.php b/api/v3/Case.php index a7fe9c4d52..4621a82d0a 100644 --- a/api/v3/Case.php +++ b/api/v3/Case.php @@ -37,6 +37,7 @@ * Open a new case, add client and manager roles, and standard timeline. * * @param array $params + * * @code * //REQUIRED: * 'case_type_id' => int OR @@ -366,6 +367,7 @@ function civicrm_api3_case_update($params) { * Delete a specified case. * * @param array $params + * * @code * //REQUIRED: * 'id' => int diff --git a/api/v3/Contribution.php b/api/v3/Contribution.php index cf6c5f0b6b..718560d990 100644 --- a/api/v3/Contribution.php +++ b/api/v3/Contribution.php @@ -527,7 +527,7 @@ function _ipn_process_transaction(&$params, $contribution, $input, $ids, $firstC static $domainFromName; static $domainFromEmail; if (empty($domainFromEmail) && (empty($params['receipt_from_name']) || empty($params['receipt_from_email']))) { - list($domainFromName, $domainFromEmail) = CRM_Core_BAO_Domain::getNameAndEmail(TRUE); + list($domainFromName, $domainFromEmail) = CRM_Core_BAO_Domain::getNameAndEmail(TRUE); } $input['receipt_from_name'] = CRM_Utils_Array::value('receipt_from_name', $params, $domainFromName); $input['receipt_from_email'] = CRM_Utils_Array::value('receipt_from_email', $params, $domainFromEmail); -- 2.25.1