yii\caching\Cache::offsetGet PHP Method

offsetGet() public method

This method is required by the interface [[\ArrayAccess]].
public offsetGet ( string $key ) : mixed
$key string a key identifying the cached value
return 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);
    }