CRM-16259, fixed Jenkins style check error
authorPradeep Nayak <pradpnayak@gmail.com>
Wed, 20 Jan 2016 11:08:25 +0000 (16:38 +0530)
committerPradeep Nayak <pradpnayak@gmail.com>
Wed, 20 Jan 2016 11:08:25 +0000 (16:38 +0530)
----------------------------------------
* CRM-16259: Create Payment API
  https://issues.civicrm.org/jira/browse/CRM-16259

api/v3/Payment.php
tests/phpunit/api/v3/PaymentTest.php

index 8c171e8a4b1d86602de216d972f08e534a336548..709a57bdd1f65ad676fd12879f589886396882b6 100644 (file)
@@ -121,7 +121,7 @@ function civicrm_api3_payment_cancel(&$params) {
  */
 function civicrm_api3_payment_create(&$params) {
   // Check if it is an update
-  if (CRM_Utils_Array::value ('id', $params)) {
+  if (CRM_Utils_Array::value('id', $params)) {
     $amount = $params['total_amount'];
     civicrm_api3('Payment', 'cancel', $params);
     $params['total_amount'] = $amount;
index f56f8aaf085cef93ddcccbdecbd34ce86771d8fa..da05c3b20dee5e1aa25c716f64d987b24a946081 100644 (file)
@@ -317,7 +317,7 @@ class api_v3_PaymentTest extends CiviUnitTestCase {
 
   /**
    * Test cancel payment api
-   */ 
+   */
   public function testCancelPayment() {
     list($lineItems, $contribution) = $this->createParticipantWithContribution();
 
@@ -336,7 +336,7 @@ class api_v3_PaymentTest extends CiviUnitTestCase {
     $payment = $this->callAPIAndDocument('payment', 'get', $params, __FUNCTION__, __FILE__);
     $this->assertEquals(2, $payment['count']);
     $amounts = array(-150.00, 150.00);
-    foreach($payment['values'] as $value) {
+    foreach ($payment['values'] as $value) {
       $this->assertEquals($value['total_amount'], array_pop($amounts), 'Mismatch total amount');
     }