Completed
Push — master ( c985f8...7064aa )
by Kazi Mainuddin
03:41
created
src/Verifiers/MoneyVerifier.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
     /**
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
         $response = ['status' => true, 'data' => [], 'message' => ''];
66 66
         $collection = collect($data->result)->pluck('postBackParam', 'merchantTransactionId');
67 67
 
68
-        foreach($this->txnIds as $id) {
69
-            if (! empty($collection[$id])) {
68
+        foreach ($this->txnIds as $id) {
69
+            if (!empty($collection[$id])) {
70 70
                 $response['data'][$id] = $this->getInstance($collection[$id]);
71 71
             }
72 72
         }
Please login to merge, or discard this patch.
src/Verifiers/BizVerifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@
 block discarded – undo
75 75
         
76 76
         $response = ['status' => true, 'data' => [], 'message' => ''];
77 77
 
78
-        foreach($this->txnIds as $id) {
79
-            if (! empty($data->transaction_details->{$id})) {
78
+        foreach ($this->txnIds as $id) {
79
+            if (!empty($data->transaction_details->{$id})) {
80 80
                 $response['data'][$id] = $this->getInstance($data->transaction_details->{$id});
81 81
             }
82 82
         }
Please login to merge, or discard this patch.
src/Verifiers/AbstractVerifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $request = new Request((array) $data);
41 41
         $attributes = (new Processor($request))->process();
42 42
 
43
-        if($this->config->getDriver() == 'database') {
43
+        if ($this->config->getDriver() == 'database') {
44 44
             return PayuPayment::find($attributes);
45 45
         }
46 46
 
Please login to merge, or discard this patch.