public function MemcachedMock::flush in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/Profiler/Mock/MemcachedMock.php \Symfony\Component\HttpKernel\Tests\Profiler\Mock\MemcachedMock::flush()
Flush all existing items at the server.
Return value
bool
File
- vendor/
symfony/ http-kernel/ Tests/ Profiler/ Mock/ MemcachedMock.php, line 193
Class
- MemcachedMock
- MemcachedMock for simulating Memcached extension in tests.
Namespace
Symfony\Component\HttpKernel\Tests\Profiler\MockCode
public function flush() {
if (!$this->connected) {
return false;
}
$this->storage = array();
return true;
}