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

get() public method

Retrieve item from the server.
public get ( string $key ) : boolean
$key string
return boolean
    public function get($key)
    {
        if (!$this->connected) {
            return false;
        }
        return $this->getData($key);
    }