Passed
Push — master ( 669780...2312b4 )
by Devin
02:46
created
src/BinList.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -48,28 +48,28 @@
 block discarded – undo
48 48
     {
49 49
         $result = json_decode($json);
50 50
         $bank = new BinBank(
51
-           $result->bank->name ?? '',
52
-           $result->bank->url ?? '',
53
-           $result->bank->phone ?? '',
54
-           $result->bank->city ?? ''
55
-       );
51
+            $result->bank->name ?? '',
52
+            $result->bank->url ?? '',
53
+            $result->bank->phone ?? '',
54
+            $result->bank->city ?? ''
55
+        );
56 56
         $country = new BinCountry(
57
-           $result->country->numeric ?? '',
58
-           $result->country->alpha2 ?? '',
59
-           $result->country->name ?? '',
60
-           $result->country->emoji ?? '',
61
-           $result->country->currency ?? '',
62
-           $result->country->latitude ?? 0,
63
-           $result->country->longitude ?? 0
64
-       );
57
+            $result->country->numeric ?? '',
58
+            $result->country->alpha2 ?? '',
59
+            $result->country->name ?? '',
60
+            $result->country->emoji ?? '',
61
+            $result->country->currency ?? '',
62
+            $result->country->latitude ?? 0,
63
+            $result->country->longitude ?? 0
64
+        );
65 65
         $binResult = new BinResult(
66
-           $result->scheme ?? '',
67
-           $result->type ?? '',
68
-           $result->brand ?? '',
69
-           $result->prepaid ?? '',
70
-           $country ?? '',
71
-           $bank ?? ''
72
-       );
66
+            $result->scheme ?? '',
67
+            $result->type ?? '',
68
+            $result->brand ?? '',
69
+            $result->prepaid ?? '',
70
+            $country ?? '',
71
+            $bank ?? ''
72
+        );
73 73
 
74 74
         return $binResult;
75 75
     }
Please login to merge, or discard this patch.
src/BinListServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     protected function registerBindings(): void
28 28
     {
29
-        $this->app->singleton('binlist', function () {
29
+        $this->app->singleton('binlist', function() {
30 30
             return new BinList();
31 31
         });
32 32
 
Please login to merge, or discard this patch.