ManaPHP\Store\Adapter\Db::get PHP Method

get() public method

public get ( string $key ) : string | false
$key string
return string | false
    public function get($key)
    {
        /**
         * @var \ManaPHP\Store\Adapter\Db\Model $model
         */
        $model = new $this->_model();
        $model = $model::findFirst(['hash' => md5($key)]);
        return $model === false ? false : $model->value;
    }