| @@ -178,6 +178,9 @@ | ||
| 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(); | 
| @@ -8,6 +8,9 @@ discard block | ||
| 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 | ||
| 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; |