Metaphore\Store\MockStore::get PHP Method

get() public method

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