Isswp101\Persimmon\Cache\RuntimeCache::get PHP Метод

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

Return instance from cache.
public get ( mixed $key ) : Model
$key mixed
Результат Isswp101\Persimmon\Model
    public function get($key)
    {
        return $this->has($key) ? $this->cache[$key]['instance'] : null;
    }