ManaPHP\Store::get PHP Method

get() public method

Fetch content
public get ( string $key ) : mixed
$key string
return mixed
    public function get($key)
    {
        $data = $this->adapter->get($this->_prefix . $key);
        if ($data === false) {
            return false;
        } else {
            return $this->serializer->deserialize($data);
        }
    }