@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | { |
| 30 | 30 | $src = "https://www.payumoney.com/{$this->prefix()}payment/op/getPaymentResponse?"; |
| 31 | 31 | |
| 32 | - return $src . http_build_query($this->fields()); |
|
| 32 | + return $src.http_build_query($this->fields()); |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $collection = collect($data->result)->pluck('postBackParam', 'merchantTransactionId'); |
| 67 | 67 | |
| 68 | 68 | foreach ($this->txnIds as $id) { |
| 69 | - if (! empty($collection[$id])) { |
|
| 69 | + if (!empty($collection[$id])) { |
|
| 70 | 70 | $response['data'][$id] = $this->getInstance($collection[$id]); |
| 71 | 71 | } |
| 72 | 72 | } |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | $response = ['status' => true, 'data' => [], 'message' => '']; |
| 77 | 77 | |
| 78 | 78 | foreach ($this->txnIds as $id) { |
| 79 | - if (! empty($data->transaction_details->{$id})) { |
|
| 79 | + if (!empty($data->transaction_details->{$id})) { |
|
| 80 | 80 | $response['data'][$id] = $this->getInstance($data->transaction_details->{$id}); |
| 81 | 81 | } |
| 82 | 82 | } |