yii\caching\Cache::offsetGet PHP Метод

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

This method is required by the interface [[\ArrayAccess]].
public offsetGet ( string $key ) : mixed
$key string a key identifying the cached value
Результат mixed the value stored in cache, false if the value is not in the cache or expired.
    public function offsetGet($key)
    {
        return $this->get($key);
    }