Snc\RedisBundle\Tests\Profiler\Storage\Mock\RedisMock::flushAll PHP Method

flushAll() public method

Flush all existing items from all databases at the server.
public flushAll ( ) : boolean
return boolean
    public function flushAll()
    {
        if (!$this->connected) {
            return false;
        }
        $this->storage = array();
        return true;
    }