ManaPHP\Store::get PHP Méthode

get() public méthode

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