Completed
Push — master ( 129e30...79af42 )
by mahdi
03:24
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/Payir.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     private function extractDetails($name)
53 53
     {
54
-    	return empty($this->invoice->getDetails()[$name]) ? null : $this->invoice->getDetails()[$name];
54
+        return empty($this->invoice->getDetails()[$name]) ? null : $this->invoice->getDetails()[$name];
55 55
     }
56 56
 
57 57
     /**
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function purchase()
63 63
     {
64
-    	$mobile = $this->extract('mobile');
65
-    	$description = $this->extract('description');
66
-    	$factorNumber = $this->extract('factorNumber');
64
+        $mobile = $this->extract('mobile');
65
+        $description = $this->extract('description');
66
+        $factorNumber = $this->extract('factorNumber');
67 67
 
68 68
         $data = array(
69 69
             'api' => $this->settings->merchantId,
Please login to merge, or discard this patch.
src/Drivers/Payping.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     private function extractDetails($name)
53 53
     {
54
-    	return empty($this->invoice->getDetails()[$name]) ? null : $this->invoice->getDetails()[$name];
54
+        return empty($this->invoice->getDetails()[$name]) ? null : $this->invoice->getDetails()[$name];
55 55
     }
56 56
 
57 57
     /**
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function purchase()
63 63
     {
64
-    	$mobile = $this->extract('mobile');
65
-    	$description = $this->extract('description');
66
-    	$factorNumber = $this->extract('factorNumber');
64
+        $mobile = $this->extract('mobile');
65
+        $description = $this->extract('description');
66
+        $factorNumber = $this->extract('factorNumber');
67 67
 
68 68
         $data = array(
69 69
             'api' => $this->settings->merchantId,
Please login to merge, or discard this patch.