Prado\Caching\TCache::offsetGet PHP Метод

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

This method is required by the interface \ArrayAccess.
public offsetGet ( $id ) : mixed
Результат 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);
    }