Completed
Push — master ( adb079...226a25 )
by Klaus
03:42
created
src/CacheService.php 1 patch
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.
src/Adapter/AdapterInterface.php 1 patch
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.