Completed
Push — master ( 748aaa...c897cb )
by Fernando
04:14 queued 02:03
created
src/CacheService.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -178,6 +178,9 @@
 block discarded – undo
178 178
         return $this->recursiveSet($key, $value);
179 179
     }
180 180
 
181
+    /**
182
+     * @param string $value
183
+     */
181 184
     protected function recursiveSet(string $key, $value, int $level = null): bool
182 185
     {
183 186
         $adapterStack = $this->getAdapterStack();
Please login to merge, or discard this 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 Linio\Component\Cache;
5 5
 
Please login to merge, or discard this patch.
src/Encoder/JsonEncoder.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 Linio\Component\Cache\Encoder;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/PhpredisAdapter.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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/AdapterInterface.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@  discard block
 block discarded – undo
8 8
 
9 9
 interface AdapterInterface
10 10
 {
11
+    /**
12
+     * @return void
13
+     */
11 14
     public function __construct(array $config);
12 15
 
13 16
     /**
@@ -31,6 +34,9 @@  discard block
 block discarded – undo
31 34
 
32 35
     public function getNamespace(): string;
33 36
 
37
+    /**
38
+     * @return void
39
+     */
34 40
     public function setNamespace(string $namespace);
35 41
 
36 42
     public function cacheNotFoundKeys(): bool;
Please login to merge, or discard this 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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/WincacheAdapter.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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/ApcuAdapter.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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/AbstractAdapter.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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/ArrayAdapter.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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.
src/Adapter/MysqlAdapter.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 Linio\Component\Cache\Adapter;
5 5
 
Please login to merge, or discard this patch.