Lavender\Cloud\Sina\Cache\KvdbStore::get PHP Method

get() public method

Retrieve an item from the cache by key.
public get ( string $key ) : mixed
$key string
return mixed
    public function get($key)
    {
        $value = $this->kvdb->get($this->prefix . $key);
        return $value;
    }