Prado\Caching\TCache::offsetGet PHP Method

offsetGet() public method

This method is required by the interface \ArrayAccess.
public offsetGet ( $id ) : mixed
return mixed the value stored in cache, false if the value is not in the cache or expired.
    public function offsetGet($id)
    {
        return $this->get($id);
    }