Isswp101\Persimmon\Cache\RuntimeCache::get PHP Méthode

get() public méthode

Return instance from cache.
public get ( mixed $key ) : Model
$key mixed
Résultat Isswp101\Persimmon\Model
    public function get($key)
    {
        return $this->has($key) ? $this->cache[$key]['instance'] : null;
    }