diff --git a/src/Memory.php b/src/Memory.php index 3bc6858..3c95087 100644 --- a/src/Memory.php +++ b/src/Memory.php @@ -117,11 +117,9 @@ class Memory { } } - public function flush(?int $delay = 0) : bool + public function flush(int $delay = 60) : bool { - return $this->_memcached->flush( - $delay - ); + return $this->_memcached->flush(); } private function _setKey(mixed $key) : string