From 8499d1ea50e0f14d9b9a05768da6ce094d27284c Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Sun, 15 Mar 2015 02:22:08 +0530 Subject: [PATCH] --CRM-16015, followed code style --- CRM/Contribute/BAO/Contribution.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contribute/BAO/Contribution.php b/CRM/Contribute/BAO/Contribution.php index 5376860bc8..8ac5501def 100644 --- a/CRM/Contribute/BAO/Contribution.php +++ b/CRM/Contribute/BAO/Contribution.php @@ -3688,7 +3688,7 @@ WHERE con.id = {$contributionId} * @param Integer $financialTypeId * Value of latest Financial Type. * - * @param Integer + * @param Integer $contributionId * Contribution Id. * * @param array $errors @@ -3705,7 +3705,7 @@ WHERE con.id = {$contributionId} } $sql = 'SELECT financial_type_id FROM civicrm_line_item WHERE contribution_id = %1 GROUP BY financial_type_id;'; $params = array( - '1' => array($contributionId, 'Integer') + '1' => array($contributionId, 'Integer'), ); $result = CRM_Core_DAO::executeQuery($sql, $params); if ($result->N > 1) { -- 2.25.1