Compare commits

..

No commits in common. "main" and "0.4.0" have entirely different histories.
main ... 0.4.0

View file

@ -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