Passed
Pull Request — master (#275)
by
unknown
02:41
created
src/Drivers/Zarinpal/Strategies/Normal.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             "description" => $description,
76 76
             "metadata" => $this->metadata(),
77 77
         ];
78
-        if (isset($this->settings->wages)){
78
+        if (isset($this->settings->wages)) {
79 79
             $data['wages'] = $this->settings->wages;
80 80
         }
81 81
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         $transactionId = $this->invoice->getTransactionId();
117 117
         $paymentUrl = $this->getPaymentUrl();
118 118
 
119
-        $payUrl = $paymentUrl . $transactionId;
119
+        $payUrl = $paymentUrl.$transactionId;
120 120
 
121 121
         return $this->redirectWithForm($payUrl, [], 'GET');
122 122
     }
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
         $refId = $result['data']['ref_id'];
160 160
 
161
-        $receipt =  $this->createReceipt($refId);
161
+        $receipt = $this->createReceipt($refId);
162 162
         $receipt->detail([
163 163
             'code' => $result['data']['code'],
164 164
             'message' => $result['data']['message'] ?? null,
Please login to merge, or discard this patch.