From: deb.monish Date: Thu, 3 Nov 2016 12:02:49 +0000 (+0530) Subject: style fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d167bea84f18713b232588d29f5a11b4768000c4;p=civicrm-core.git style fix --- diff --git a/CRM/Core/Payment/AuthorizeNet.php b/CRM/Core/Payment/AuthorizeNet.php index f264ae83fd..f365683550 100644 --- a/CRM/Core/Payment/AuthorizeNet.php +++ b/CRM/Core/Payment/AuthorizeNet.php @@ -181,15 +181,15 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment { // TODO: // AVS, CVV2, CAVV, and other verification results switch ($response_fields[0]) { - case self::AUTH_REVIEW : + case self::AUTH_REVIEW: $params['payment_status_id'] = array_search('Pending', $contributionStatus); break; - case self::AUTH_ERROR : + case self::AUTH_ERROR: $params['payment_status_id'] = array_search('Failed', $contributionStatus); break; - case self::AUTH_DECLINED : + case self::AUTH_DECLINED: $errormsg = $response_fields[2] . ' ' . $response_fields[3]; return self::error($response_fields[1], $errormsg);