Passed
Push — master ( c51a2e...4dacf8 )
by mahdi
02:57
created
src/Provider/PaymentServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         /**
25 25
          * Bind to service container.
26 26
          */
27
-        $this->app->bind('shetabit-payment', function () {
27
+        $this->app->bind('shetabit-payment', function() {
28 28
             return new PaymentManager(config('payment'));
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
src/Drivers/Zibal/Zibal.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,16 +63,16 @@
 block discarded – undo
63 63
 
64 64
         if (!empty($details['orderId'])) {
65 65
             $orderId = $details['orderId'];
66
-        } else if(!empty($details['order_id'])) {
66
+        } else if (!empty($details['order_id'])) {
67 67
             $orderId = $details['order_id'];
68 68
         } else {
69 69
             $orderId = crc32($this->invoice->getUuid()).time();
70 70
         }
71 71
 
72 72
         $mobile = null;
73
-        if(!empty($details['mobile'])) {
73
+        if (!empty($details['mobile'])) {
74 74
             $mobile = $details['mobile'];
75
-        } else if(!empty($details['phone'])) {
75
+        } else if (!empty($details['phone'])) {
76 76
             $mobile = $details['phone'];
77 77
         }
78 78
 
Please login to merge, or discard this patch.