--CRM-16015, followed code style
authorPradeep Nayak <pradpnayak@gmail.com>
Sat, 14 Mar 2015 20:52:08 +0000 (02:22 +0530)
committerPradeep Nayak <pradpnayak@gmail.com>
Thu, 19 Mar 2015 09:40:21 +0000 (15:10 +0530)
CRM/Contribute/BAO/Contribution.php

index 5376860bc893dc7e99212d968a2ec63c7c9aef19..8ac5501def496ccf37d73028a9d0b06282dfe9f4 100644 (file)
@@ -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) {