Pheasant\Cache\ArrayCache::get PHP Method

get() public method

public get ( $hash )
    public function get($hash)
    {
        // hack to avoid an extra isset check
        $value = @$this->_cache[(string) $hash];
        return $value ? $value : false;
    }