Passed
Push — 0.8.x ( dbd8e8...e4bd6c )
by Alexander
06:37 queued 03:14
created
src/components/Cache/CacheManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@
 block discarded – undo
301 301
      */
302 302
     public function getDefaultDriver(): string
303 303
     {
304
-       return $this->app['config']['cache.default'];
304
+        return $this->app['config']['cache.default'];
305 305
     }
306 306
     
307 307
     /**
Please login to merge, or discard this patch.
src/components/Cache/CacheRepository.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -472,7 +472,7 @@
 block discarded – undo
472 472
      */
473 473
     public function offsetSet($offset, $value): void
474 474
     {
475
-       $this->put($offset, $value, $this->cacheTime);
475
+        $this->put($offset, $value, $this->cacheTime);
476 476
     }
477 477
 
478 478
     /**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      * 
280 280
      * @return int|bool
281 281
      */
282
-    public function increment(string $key, mixed $value = 1): int|bool
282
+    public function increment(string $key, mixed $value = 1): int | bool
283 283
     {
284 284
         return $this->store->increment($key, $value);
285 285
     }
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      * 
293 293
      * @return int|bool
294 294
      */
295
-    public function decrement(string $key, mixed $value = 1): int|bool
295
+    public function decrement(string $key, mixed $value = 1): int | bool
296 296
     {
297 297
         return $this->store->decrement($key, $value);
298 298
     }
Please login to merge, or discard this patch.
src/components/Cache/Concerns/CacheMultipleKeys.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $return = [];
40 40
         
41
-        $keys = collect($keys)->mapKeys(function ($value, $key) {
41
+        $keys = collect($keys)->mapKeys(function($value, $key) {
42 42
             return [is_string($key) ? $key : $value => is_string($key) ? $value : null];
43 43
         })->all();
44 44
         
Please login to merge, or discard this patch.
src/components/Cache/Store/ArrayStore.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
      * 
112 112
      * @return int|bool
113 113
      */
114
-    public function increment(string $key, mixed $value = 1): int|bool
114
+    public function increment(string $key, mixed $value = 1): int | bool
115 115
     {
116 116
         if ( ! is_null($existing = $this->get($key))) {
117
-            return take(((int) $existing) + $value, function ($incremented) use ($key) {
117
+            return take(((int) $existing) + $value, function($incremented) use ($key) {
118 118
                 $value = $this->serialized ? serialize($incremented) : $incremented;
119 119
                 
120 120
                 $this->storage[$key]['value'] = $value;
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      * 
135 135
      * @return int|bool
136 136
      */
137
-    public function decrement(string $key, mixed $value = 1): int|bool
137
+    public function decrement(string $key, mixed $value = 1): int | bool
138 138
     {
139 139
         return $this->increment($key, $value * -1);
140 140
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,9 @@
 block discarded – undo
69 69
      */
70 70
     public function get(string $key)
71 71
     {
72
-        if ( ! isset($this->storage[$key])) return;
72
+        if ( ! isset($this->storage[$key])) {
73
+            return;
74
+        }
73 75
 
74 76
         $item = $this->storage[$key];
75 77
 
Please login to merge, or discard this patch.
src/components/Cache/Store/MemcachedStore.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
         $this->memcached = $memcached;
71 71
         $this->onVersion = (new ReflectionMethod('Memcached', 'getMulti'))
72
-                           ->getNumberOfParameters() == 2;
72
+                            ->getNumberOfParameters() == 2;
73 73
     }
74 74
 
75 75
     /**
@@ -201,13 +201,13 @@  discard block
 block discarded – undo
201 201
         return $this->memcached->decrement($this->prefix.$key, $value = 1);
202 202
     }
203 203
 
204
-     /**
205
-     * Deletes a specific item from the cache store.
206
-     * 
207
-     * @param  string  $key
208
-     * 
209
-     * @return mixed
210
-     */
204
+        /**
205
+         * Deletes a specific item from the cache store.
206
+         * 
207
+         * @param  string  $key
208
+         * 
209
+         * @return mixed
210
+         */
211 211
     public function delete(string $key): mixed
212 212
     {
213 213
         return $this->memcached->delete($this->prefix.$key);
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function many(array $keys): array
111 111
     {
112
-        $prefixed = array_map(function ($key) {
112
+        $prefixed = array_map(function($key) {
113 113
             return $this->prefix.$key;
114 114
         }, $keys);
115 115
         
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      * 
184 184
      * @return int|bool
185 185
      */
186
-    public function increment(string $key, mixed $value = 1): int|bool
186
+    public function increment(string $key, mixed $value = 1): int | bool
187 187
     {
188 188
         return $this->memcached->increment($this->prefix.$key, $value);
189 189
     }
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      * 
197 197
      * @return int|bool
198 198
      */
199
-    public function decrement(string $key, mixed $value = 1): int|bool
199
+    public function decrement(string $key, mixed $value = 1): int | bool
200 200
     {
201 201
         return $this->memcached->decrement($this->prefix.$key, $value = 1);
202 202
     }
Please login to merge, or discard this patch.
src/components/Cache/Store/FileStore.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -297,11 +297,11 @@
 block discarded – undo
297 297
         return $this->files;
298 298
     }
299 299
 
300
-     /**
301
-     * Gets the cache key prefix.
302
-     *
303
-     * @return string
304
-     */
300
+        /**
301
+         * Gets the cache key prefix.
302
+         *
303
+         * @return string
304
+         */
305 305
     public function getPrefix(): string
306 306
     {
307 307
         return '';
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
      * 
206 206
      * @return int|bool
207 207
      */
208
-    public function increment(string $key, mixed $value = 1): int|bool
208
+    public function increment(string $key, mixed $value = 1): int | bool
209 209
     {
210 210
         $raw = $this->getPayLoad($key);
211 211
         $int = ((int) $raw['data']) + $value;
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * 
224 224
      * @return int|bool
225 225
      */
226
-    public function decrement(string $key, mixed $value = 1): int|bool
226
+    public function decrement(string $key, mixed $value = 1): int | bool
227 227
     {
228 228
         return $this->increment($key, $value * -1);
229 229
     }
Please login to merge, or discard this patch.
src/components/Cache/Store/DatabaseStore.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
      * 
164 164
      * @return int|bool
165 165
      */
166
-    public function increment(string $key, mixed $value = 1): int|bool
166
+    public function increment(string $key, mixed $value = 1): int | bool
167 167
     {
168
-        return $this->incrementOrDecrement($key, $value, function ($current, $value) {
168
+        return $this->incrementOrDecrement($key, $value, function($current, $value) {
169 169
             return $current + $value;
170 170
         });
171 171
     }
@@ -178,9 +178,9 @@  discard block
 block discarded – undo
178 178
      * 
179 179
      * @return int|bool
180 180
      */
181
-    public function decrement(string $key, mixed $value = 1): int|bool
181
+    public function decrement(string $key, mixed $value = 1): int | bool
182 182
     {
183
-        return $this->incrementOrDecrement($key, $value, function ($current, $value) {
183
+        return $this->incrementOrDecrement($key, $value, function($current, $value) {
184 184
             return $current - $value;
185 185
         });
186 186
     }
@@ -194,9 +194,9 @@  discard block
 block discarded – undo
194 194
      * 
195 195
      * @return int|bool
196 196
      */
197
-    protected function incrementOrDecrement(string $key, mixed $value, Closure $callback): int|bool
197
+    protected function incrementOrDecrement(string $key, mixed $value, Closure $callback): int | bool
198 198
     {
199
-        return $this->connection->transaction(function () use ($key, $value, $callback) {
199
+        return $this->connection->transaction(function() use ($key, $value, $callback) {
200 200
             $prefixed = $this->prefix.$key;
201 201
             $cache    = $this->table()->where('key', $prefixed)->first();
202 202
             
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,7 +90,9 @@  discard block
 block discarded – undo
90 90
 
91 91
         $cache = $this->table()->where('key', '=', $prefixed)->first();
92 92
         
93
-        if (is_null($cache)) return;
93
+        if (is_null($cache)) {
94
+            return;
95
+        }
94 96
         
95 97
         $cache = is_array($cache) ? (object) $cache : $cache;
96 98
         
@@ -200,7 +202,9 @@  discard block
 block discarded – undo
200 202
             $prefixed = $this->prefix.$key;
201 203
             $cache    = $this->table()->where('key', $prefixed)->first();
202 204
             
203
-            if (is_null($cache)) return false;
205
+            if (is_null($cache)) {
206
+                return false;
207
+            }
204 208
             
205 209
             $cache = is_array($cache) ? (object) $cache : $cache;
206 210
             
@@ -208,7 +212,9 @@  discard block
 block discarded – undo
208 212
             
209 213
             $result = $callback((int) $current, $value);
210 214
 
211
-            if ( ! is_numeric($current)) return false;
215
+            if ( ! is_numeric($current)) {
216
+                return false;
217
+            }
212 218
             
213 219
             $this->table()->where('key', $prefixed)->update([
214 220
                 'value' => $this->serialize($result),
Please login to merge, or discard this patch.
src/components/Cache/Store/ApcWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * 
79 79
      * @return int|bool
80 80
      */
81
-    public function increment(string $key, mixed $value): int|bool
81
+    public function increment(string $key, mixed $value): int | bool
82 82
     {
83 83
         return $this->apcu ? apcu_inc($key, $value) : apc_inc($key, $value);
84 84
     }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      * 
92 92
      * @return int|bool
93 93
      */
94
-    public function decrement(string $key, mixed $value): int|bool
94
+    public function decrement(string $key, mixed $value): int | bool
95 95
     {
96 96
         return $this->apcu ? apcu_dec($key, $value) : apc_dec($key, $value);
97 97
     }
Please login to merge, or discard this patch.
src/components/Cache/Store/ApcStore.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * 
99 99
      * @return int|bool
100 100
      */
101
-    public function increment(string $key, mixed $value = 1): int|bool
101
+    public function increment(string $key, mixed $value = 1): int | bool
102 102
     {
103 103
         return $this->apc->increment($this->prefix.$key, $value);
104 104
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * 
112 112
      * @return int|bool
113 113
      */
114
-    public function decrement(string $key, mixed $value = 1): int|bool
114
+    public function decrement(string $key, mixed $value = 1): int | bool
115 115
     {
116 116
         return $this->apc->decrement($this->prefix.$key, $value);
117 117
     }
Please login to merge, or discard this patch.