Improve code, fix filesystem test failing after first run

This commit is contained in:
2018-03-25 12:48:54 +02:00
parent 5b94961691
commit d992c767e8
12 changed files with 68 additions and 43 deletions

View File

@@ -20,7 +20,7 @@ final class NullAdapter implements CacheAdapterInterface
* @param int|null $ttl
* @return void
*/
public function set(string $key, $value, int $ttl = null)
public function set(string $key, $value, int $ttl = null): void
{
}
@@ -28,7 +28,7 @@ final class NullAdapter implements CacheAdapterInterface
* @param string $key
* @return void
*/
public function delete(string $key)
public function delete(string $key): void
{
}