@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | if (empty($body['status']) || $body['status'] != 1) { |
| 81 | 81 | // some error has happened |
| 82 | - throw new PurchaseFailedException($body['status'],is_numeric($body['status']??0)?($body['status']??0):0); |
|
| 82 | + throw new PurchaseFailedException($body['status'], is_numeric($body['status'] ?? 0) ? ($body['status'] ?? 0) : 0); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | $this->invoice->transactionId($body['invoice_key']); |
@@ -153,12 +153,12 @@ discard block |
||
| 153 | 153 | * @param $message |
| 154 | 154 | * @throws InvalidPaymentException |
| 155 | 155 | */ |
| 156 | - private function notVerified($message,$status = 0) |
|
| 156 | + private function notVerified($message, $status = 0) |
|
| 157 | 157 | { |
| 158 | 158 | if (empty($message)) { |
| 159 | - throw new InvalidPaymentException('خطای ناشناخته ای رخ داده است.',is_numeric($status)?$status:0); |
|
| 159 | + throw new InvalidPaymentException('خطای ناشناخته ای رخ داده است.', is_numeric($status) ? $status : 0); |
|
| 160 | 160 | } else { |
| 161 | - throw new InvalidPaymentException($message,is_numeric($status)?$status:0); |
|
| 161 | + throw new InvalidPaymentException($message, is_numeric($status) ? $status : 0); |
|
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | 164 | } |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | */ |
| 112 | 112 | public function pay(): RedirectionForm |
| 113 | 113 | { |
| 114 | - $payUrl = $this->settings->apiPaymentUrl . $this->invoice->getTransactionId(); |
|
| 114 | + $payUrl = $this->settings->apiPaymentUrl.$this->invoice->getTransactionId(); |
|
| 115 | 115 | |
| 116 | 116 | return $this->redirectWithForm($payUrl, [], 'GET'); |
| 117 | 117 | } |
@@ -206,9 +206,9 @@ discard block |
||
| 206 | 206 | ); |
| 207 | 207 | |
| 208 | 208 | if (array_key_exists($status, $translations)) { |
| 209 | - throw new InvalidPaymentException($translations[$status],is_numeric($status)?$status:0); |
|
| 209 | + throw new InvalidPaymentException($translations[$status], is_numeric($status) ? $status : 0); |
|
| 210 | 210 | } else { |
| 211 | - throw new InvalidPaymentException('تراکنش با خطا مواجه شد.',is_numeric($status)?$status:0); |
|
| 211 | + throw new InvalidPaymentException('تراکنش با خطا مواجه شد.', is_numeric($status) ? $status : 0); |
|
| 212 | 212 | } |
| 213 | 213 | } |
| 214 | 214 | } |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | { |
| 157 | 157 | $urlWithQuery = $url; |
| 158 | 158 | foreach ($params as $key => $value) { |
| 159 | - $urlWithQuery .= (parse_url($urlWithQuery, PHP_URL_QUERY) ? '&' : '?') . "{$key}={$value}"; |
|
| 159 | + $urlWithQuery .= (parse_url($urlWithQuery, PHP_URL_QUERY) ? '&' : '?')."{$key}={$value}"; |
|
| 160 | 160 | } |
| 161 | 161 | return $urlWithQuery; |
| 162 | 162 | } |
@@ -176,9 +176,9 @@ discard block |
||
| 176 | 176 | ); |
| 177 | 177 | |
| 178 | 178 | if (array_key_exists($status, $translations)) { |
| 179 | - throw new InvalidPaymentException($translations[$status],is_numeric($status)?$status:0); |
|
| 179 | + throw new InvalidPaymentException($translations[$status], is_numeric($status) ? $status : 0); |
|
| 180 | 180 | } else { |
| 181 | - throw new InvalidPaymentException('تراکنش با خطا مواجه شد.',is_numeric($status)?$status:0); |
|
| 181 | + throw new InvalidPaymentException('تراکنش با خطا مواجه شد.', is_numeric($status) ? $status : 0); |
|
| 182 | 182 | } |
| 183 | 183 | } |
| 184 | 184 | } |
@@ -195,9 +195,9 @@ |
||
| 195 | 195 | -90 => 'تراکنش قبلا تایید شده است' |
| 196 | 196 | ); |
| 197 | 197 | if (array_key_exists($status, $translations)) { |
| 198 | - throw new InvalidPaymentException($translations[$status],is_numeric($status)?$status:0); |
|
| 198 | + throw new InvalidPaymentException($translations[$status], is_numeric($status) ? $status : 0); |
|
| 199 | 199 | } else { |
| 200 | - throw new InvalidPaymentException('خطای ناشناخته ای رخ داده است.',is_numeric($status)?$status:0); |
|
| 200 | + throw new InvalidPaymentException('خطای ناشناخته ای رخ داده است.', is_numeric($status) ? $status : 0); |
|
| 201 | 201 | } |
| 202 | 202 | } |
| 203 | 203 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $this->invoice->transactionId($result->Token); |
| 67 | 67 | } else { |
| 68 | 68 | // an error has happened |
| 69 | - throw new PurchaseFailedException($result->Message,$result->Status??0); |
|
| 69 | + throw new PurchaseFailedException($result->Message, $result->Status ?? 0); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | // return the transaction's id |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public function pay() : RedirectionForm |
| 82 | 82 | { |
| 83 | - $payUrl = $this->settings->apiPaymentUrl . '?Token=' . $this->invoice->getTransactionId() ; |
|
| 83 | + $payUrl = $this->settings->apiPaymentUrl.'?Token='.$this->invoice->getTransactionId(); |
|
| 84 | 84 | |
| 85 | 85 | return $this->redirectWithForm( |
| 86 | 86 | $payUrl, |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | $hasWrongRRN = (!isset($result->RRN) || $result->RRN <= 0); |
| 120 | 120 | if ($hasWrongStatus || $hasWrongRRN) { |
| 121 | 121 | $message = 'خطا از سمت بانک با کد '.$result->Status.' رخ داده است.'; |
| 122 | - throw new InvalidPaymentException($message,$result->Status); |
|
| 122 | + throw new InvalidPaymentException($message, $result->Status); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | return $this->createReceipt($result->RRN); |