Passed
Pull Request — master (#129)
by
unknown
02:31
created
src/Drivers/Atipay/Core/fn.atipay.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 define('ATIPAY_URL', 'https://mipg.atipay.net/v1/');
4
-define('ATIPAY_TOKEN_URL', ATIPAY_URL . 'get-token');
5
-define('ATIPAY_REDIRECT_TO_PSP_URL', ATIPAY_URL . 'redirect-to-gateway');
6
-define('ATIPAY_VERIFY_URL', ATIPAY_URL . 'verify-payment');
4
+define('ATIPAY_TOKEN_URL', ATIPAY_URL.'get-token');
5
+define('ATIPAY_REDIRECT_TO_PSP_URL', ATIPAY_URL.'redirect-to-gateway');
6
+define('ATIPAY_VERIFY_URL', ATIPAY_URL.'verify-payment');
7 7
 
8 8
 function fn_atipay_get_token($params)
9 9
 {
@@ -13,14 +13,14 @@  discard block
 block discarded – undo
13 13
         if (isset($r['status']) && !empty($r['status'])) {
14 14
             $status = $r['status'];
15 15
             if ($status == 1) {
16
-                $return['success']=1;
17
-                $return['token']=$r['token'];
16
+                $return['success'] = 1;
17
+                $return['token'] = $r['token'];
18 18
             } else {
19
-                $return['success']=0;
20
-                $return['errorMessage']=$r['errorDescription'];
19
+                $return['success'] = 0;
20
+                $return['errorMessage'] = $r['errorDescription'];
21 21
             }
22 22
         } else {
23
-            $return['success']=0;
23
+            $return['success'] = 0;
24 24
             if (isset($r['faMessage']) && !empty($r['faMessage'])) {
25 25
                 $return['errorMessage'] = $r['faMessage'];
26 26
             } else {
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             }
29 29
         }
30 30
     } else {
31
-        $return['success']=0;
31
+        $return['success'] = 0;
32 32
         $return['errorMessage'] = "خطا در دریافت اطلاعات توکن پرداخت";
33 33
     }
34 34
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
 function _fn_generate_get_token_form($params, $submit_text, $action)
62 62
 {
63
-    $form ="<form action='$action' method='POST' align='center' name='atipay_payment_form_token' id='atipay_payment_form_token' >";
63
+    $form = "<form action='$action' method='POST' align='center' name='atipay_payment_form_token' id='atipay_payment_form_token' >";
64 64
     foreach ($params as $k=>$v) {
65 65
         $form .= "<input type='hidden' value='$v' name='$k' >";
66 66
     }
@@ -77,15 +77,15 @@  discard block
 block discarded – undo
77 77
     if (isset($params['state']) && !empty($params['state'])) {
78 78
         $state = $params['state'];
79 79
         if ($state == 'OK') {
80
-            $result['success']=1;
81
-            $result['error']="";
80
+            $result['success'] = 1;
81
+            $result['error'] = "";
82 82
         } else {
83
-            $result['success']=0;
84
-            $result['error']= _fn_return_state_text($state);
83
+            $result['success'] = 0;
84
+            $result['error'] = _fn_return_state_text($state);
85 85
         }
86 86
     } else {
87
-        $result['success']=0;
88
-        $result['error']="خطای نامشخص در پرداخت. در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
87
+        $result['success'] = 0;
88
+        $result['error'] = "خطای نامشخص در پرداخت. در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
89 89
     }
90 90
 
91 91
     return $result;
@@ -98,18 +98,18 @@  discard block
 block discarded – undo
98 98
     if ($r) {
99 99
         if (isset($r['amount']) && !empty($r['amount'])) {
100 100
             if ($r['amount'] == $amount) {
101
-                $return['success']=1;
102
-                $return['errorMessage']="";
101
+                $return['success'] = 1;
102
+                $return['errorMessage'] = "";
103 103
             } else {
104
-                $return['success']=0;
105
-                $return['errorMessage']="خطا در تایید مبلغ پرداخت.در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
104
+                $return['success'] = 0;
105
+                $return['errorMessage'] = "خطا در تایید مبلغ پرداخت.در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
106 106
             }
107 107
         } else {
108
-            $return['success']=0;
109
-            $return['errorMessage']="خطا در تایید اطلاعات پرداخت. در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
108
+            $return['success'] = 0;
109
+            $return['errorMessage'] = "خطا در تایید اطلاعات پرداخت. در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
110 110
         }
111 111
     } else {
112
-        $return['success']=0;
112
+        $return['success'] = 0;
113 113
         $return['errorMessage'] = "خطا در تایید نهایی پرداخت. در صورتیکه مبلغی از شما کسر شده باشد، برگشت داده می شود.";
114 114
     }
115 115
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     if ($httpcode == "200") {
184 184
         //nothing YET
185 185
     } else {
186
-        $json= json_encode(array('error'=>'Y'));
186
+        $json = json_encode(array('error'=>'Y'));
187 187
     }
188 188
 
189 189
     return $json;
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     if ($httpcode == "200") {
208 208
         return json_decode($json, true);
209 209
     } else {
210
-        $json = array('error'=>'Y','jsonError'=>$httpcode,'message'=>$httpcode);
210
+        $json = array('error'=>'Y', 'jsonError'=>$httpcode, 'message'=>$httpcode);
211 211
     }
212 212
 
213 213
     return $json;
Please login to merge, or discard this patch.
src/Drivers/Fanavacard/Fanavacard.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -135,15 +135,15 @@  discard block
 block discarded – undo
135 135
     {
136 136
         $receipt = new Receipt('fanavacard', $referenceId);
137 137
         $receipt->detail([
138
-                             'ResNum'=>Request::input('ResNum'),
139
-                             'RefNum'=>Request::input('RefNum'),
140
-                             'token'=>Request::input('token'),
141
-                             'CustomerRefNum'=>Request::input('CustomerRefNum'),
142
-                             'CardMaskPan'=>Request::input('CardMaskPan'),
143
-                             'transactionAmount'=>Request::input('transactionAmount'),
144
-                             'emailAddress'=>Request::input('emailAddress'),
145
-                             'mobileNo'=>Request::input('mobileNo'),
146
-                         ]);
138
+                                'ResNum'=>Request::input('ResNum'),
139
+                                'RefNum'=>Request::input('RefNum'),
140
+                                'token'=>Request::input('token'),
141
+                                'CustomerRefNum'=>Request::input('CustomerRefNum'),
142
+                                'CardMaskPan'=>Request::input('CardMaskPan'),
143
+                                'transactionAmount'=>Request::input('transactionAmount'),
144
+                                'emailAddress'=>Request::input('emailAddress'),
145
+                                'mobileNo'=>Request::input('mobileNo'),
146
+                            ]);
147 147
         return $receipt;
148 148
     }
149 149
 
@@ -185,11 +185,11 @@  discard block
 block discarded – undo
185 185
     private function httpClientInit(): void
186 186
     {
187 187
         $this->client = new Client([
188
-                                       'curl'=>[\CURLOPT_SSL_CIPHER_LIST=>'DEFAULT@SECLEVEL=1',],
189
-                                       'verify' => false,
190
-                                       'base_uri' => $this->settings->baseUri,
191
-                                       'headers' => ['Content-Type' => 'application/json',],
192
-                                   ]);
188
+                                        'curl'=>[\CURLOPT_SSL_CIPHER_LIST=>'DEFAULT@SECLEVEL=1',],
189
+                                        'verify' => false,
190
+                                        'base_uri' => $this->settings->baseUri,
191
+                                        'headers' => ['Content-Type' => 'application/json',],
192
+                                    ]);
193 193
     }
194 194
 
195 195
     private function getWsContext(): array
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     public function __construct(Invoice $invoice, $settings)
46 46
     {
47 47
         $this->invoice($invoice);
48
-        $this->settings = (object)$settings;
48
+        $this->settings = (object) $settings;
49 49
         $this->httpClientInit();
50 50
     }
51 51
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     public function purchase()
60 60
     {
61 61
         $this->invoice->uuid(crc32($this->invoice->getUuid()));
62
-        $token  = $this->getToken();
62
+        $token = $this->getToken();
63 63
         $this->invoice->transactionId($token['Token']);
64 64
 
65 65
         return $this->invoice->getTransactionId();
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     {
93 93
         $transaction_amount = Request::input('transactionAmount');
94 94
 
95
-        if ($this->invoice->getAmount()*10 == $transaction_amount) {
95
+        if ($this->invoice->getAmount() * 10 == $transaction_amount) {
96 96
 
97 97
             $param = ['Token'=>Request::input('token'), 'RefNum'=>Request::input('RefNum')];
98 98
             $response = $this->client->post($this->settings->apiVerificationUrl, [
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             $response_data = json_decode($response->getBody()->getContents());
105 105
             if ($response_data->Result != 'erSucceed') {
106 106
                 return throw new InvalidPaymentException($response_data->Result);
107
-            } elseif ($this->invoice->getAmount()*10 != $response_data->Amount) {
107
+            } elseif ($this->invoice->getAmount() * 10 != $response_data->Amount) {
108 108
                 $this->client->post(
109 109
                     $this->settings->apiReverseAmountUrl,
110 110
                     [
@@ -185,10 +185,10 @@  discard block
 block discarded – undo
185 185
     private function httpClientInit(): void
186 186
     {
187 187
         $this->client = new Client([
188
-                                       'curl'=>[\CURLOPT_SSL_CIPHER_LIST=>'DEFAULT@SECLEVEL=1',],
188
+                                       'curl'=>[\CURLOPT_SSL_CIPHER_LIST=>'DEFAULT@SECLEVEL=1', ],
189 189
                                        'verify' => false,
190 190
                                        'base_uri' => $this->settings->baseUri,
191
-                                       'headers' => ['Content-Type' => 'application/json',],
191
+                                       'headers' => ['Content-Type' => 'application/json', ],
192 192
                                    ]);
193 193
     }
194 194
 
Please login to merge, or discard this patch.