Test Failed
Branch refactoring_database_driver (fd8b2b)
by Chubarov
03:10
created
migrations/2017_10_10_000000_create_carts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Capsule::schema()->create('cart_items', function (Blueprint $table) {
18
+        Capsule::schema()->create('cart_items', function(Blueprint $table) {
19 19
             $table->increments('id')->index()->unique();
20 20
             $table->integer('user_id')->unique();
21 21
             $table->json('data');
Please login to merge, or discard this patch.
src/CountOperation/AdditionCount.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\CountOperation;
5 5
 
Please login to merge, or discard this patch.
src/ServiceProviders/DatabaseServiceProviders.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\ServiceProviders;
5 5
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $capsule->bootEloquent();
34 34
         $container->bind(Manager::class, $capsule);
35 35
 
36
-        $container->bind(DatabaseDriver::class, function () use ($capsule) {
36
+        $container->bind(DatabaseDriver::class, function() use ($capsule) {
37 37
             return new DatabaseDriver($capsule);
38 38
         });
39 39
     }
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 use Illuminate\Container\Container;
3 3
 
4
-if (! function_exists('config')) {
4
+if (!function_exists('config')) {
5 5
     /**
6 6
      * Get / set the specified configuration value.
7 7
      *
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     }
24 24
 }
25 25
 
26
-if (! function_exists('app')) {
26
+if (!function_exists('app')) {
27 27
     /**
28 28
      * Get the available container instance.
29 29
      *
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     }
43 43
 }
44 44
 
45
-if (! function_exists('inJson')) {
45
+if (!function_exists('inJson')) {
46 46
     /**
47 47
      * Sugar json_encode
48 48
      *
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     }
56 56
 }
57 57
 
58
-if (! function_exists('fromJson')) {
58
+if (!function_exists('fromJson')) {
59 59
     /**
60 60
      * Sugar json_encode
61 61
      *
Please login to merge, or discard this patch.
src/Traits/Validate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\Traits;
5 5
 
Please login to merge, or discard this patch.
src/Contracts/CounterItemContract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\Contracts;
5 5
 
Please login to merge, or discard this patch.
src/Contracts/DiscountDriverContract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\Contracts;
5 5
 
@@ -15,5 +15,5 @@  discard block
 block discarded – undo
15 15
      * @param array $items
16 16
      * @return bool
17 17
      */
18
-    public function discount(DiscountContract $contract, array $items) : bool ;
18
+    public function discount(DiscountContract $contract, array $items) : bool;
19 19
 }
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
src/Drivers/DatabaseDriver.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
             return true;
91 91
         }
92
-           return false;
92
+            return false;
93 93
     }
94 94
 
95 95
     /**
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
         if ($row->isNotEmpty()) {
145 145
             $transformItems = array_map(function ($value) use ($items, $newPrice) {
146 146
                 if ($value['id'] == $items['id']) {
147
-                     $value['discount'] = $newPrice;
148
-                     return $value;
147
+                        $value['discount'] = $newPrice;
148
+                        return $value;
149 149
                 }
150 150
                 return $value;
151 151
             }, fromJson($row->first()->data, true));
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
             $this->updateRow($items['user_id'], inJson($transformItems));
154 154
             return true;
155 155
         }
156
-         return false;
156
+            return false;
157 157
     }
158 158
 
159 159
     /**
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\Drivers;
5 5
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $collection = $this->getItems($item['user_id']);
78 78
 
79 79
         if ($collection->isNotEmpty()) {
80
-            $itemFilter = array_filter(fromJson($collection->first()->data, true), function ($value) use ($item) {
80
+            $itemFilter = array_filter(fromJson($collection->first()->data, true), function($value) use ($item) {
81 81
                 return $value['id'] != $item['id'];
82 82
             });
83 83
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
         $row = $this->getItems($items['user_id']);
154 154
 
155 155
         if ($row->isNotEmpty()) {
156
-            $transformItems = array_map(function ($value) use ($items, $newPrice) {
156
+            $transformItems = array_map(function($value) use ($items, $newPrice) {
157 157
                 if ($value['id'] == $items['id']) {
158 158
                      $value['discount'] = $newPrice;
159 159
                      return $value;
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
         }
237 237
         $items = fromJson($collection->first()->data, true);
238 238
 
239
-        $targetItem = array_filter($items, function ($value) use ($itemId) {
239
+        $targetItem = array_filter($items, function($value) use ($itemId) {
240 240
             return $value['id'] == $itemId;
241 241
         });
242 242
 
Please login to merge, or discard this patch.
src/Drivers/RedisDriver.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
      */
179 179
     private function existItem(int $itemId, int $userId) : bool
180 180
     {
181
-         return !is_null($this->redis->hget($this->normalizeKey($userId), $itemId));
181
+            return !is_null($this->redis->hget($this->normalizeKey($userId), $itemId));
182 182
     }
183 183
 
184 184
     /**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\Drivers;
5 5
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     public function get(int $userId) : array
149 149
     {
150 150
         $items = $this->redis->hgetall($this->normalizeKey((int)$userId));
151
-        $items = array_map(function (string $value) {
151
+        $items = array_map(function(string $value) {
152 152
             return unserialize($value);
153 153
         }, $items);
154 154
 
Please login to merge, or discard this patch.