Completed
Push — master ( c9a631...069a27 )
by Harrison
9s
created
src/Adapter/AdapterInterface.php 2 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@  discard block
 block discarded – undo
7 7
 
8 8
 interface AdapterInterface
9 9
 {
10
+    /**
11
+     * @return void
12
+     */
10 13
     public function __construct(array $config);
11 14
 
12 15
     /**
@@ -22,6 +25,10 @@  discard block
 block discarded – undo
22 25
     public function deleteMulti(array $keys): bool;
23 26
     public function flush(): bool;
24 27
     public function getNamespace(): string;
28
+
29
+    /**
30
+     * @return void
31
+     */
25 32
     public function setNamespace(string $namespace);
26 33
     public function cacheNotFoundKeys(): bool;
27 34
 }
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/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\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/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/AerospikeAdapter.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/ApcAdapter.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.
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/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.