Metaphore\Store\MockStore::get PHP Метод

get() публичный Метод

public get ( $key )
    public function get($key)
    {
        if (!$this->exists($key)) {
            return false;
        }
        return $this->values[$key];
    }