CRM-16555-4 phpcs fix
authorEileen McNaughton <eileen@fuzion.co.nz>
Fri, 12 Jun 2015 00:17:26 +0000 (12:17 +1200)
committerEileen McNaughton <eileen@fuzion.co.nz>
Fri, 12 Jun 2015 00:17:26 +0000 (12:17 +1200)
CRM/Core/Payment.php

index 20d3fc7f3caa3fe606c60fd5f4c7c0160daea6f4..360b532407f053bfdf009750daa33c526ea9868d 100644 (file)
@@ -560,7 +560,7 @@ abstract class CRM_Core_Payment {
    *   URL for a failing transactor to be redirected to.
    */
   protected function getReturnFailUrl($key, $participantID = NULL, $eventID = NULL) {
-    $test =  $this->_is_test ? '&action=preview' : '';
+    $test = $this->_is_test ? '&action=preview' : '';
     if ($this->_component == "event") {
       return CRM_Utils_System::url('civicrm/event/register',
         "reset=1&cc=fail&participantId={$participantID}&id={$eventID}{$test}&qfKey={$key}",
@@ -585,7 +585,7 @@ abstract class CRM_Core_Payment {
   protected function getGoBackUrl($qfKey) {
     return CRM_Utils_System::url($this->getBaseReturnUrl(), array(
       '_qf_Confirm_display' => 'true',
-      'qfKey' => $qfKey
+      'qfKey' => $qfKey,
     ),
       TRUE, NULL, FALSE
     );