Jyxo\Spl\ObjectCache::__get PHP Méthode

__get() public méthode

Returns an object from an own storage.
public __get ( string $key ) : object
$key string Object key
Résultat object
    public function __get($key)
    {
        return isset($this->storage[$key]) ? $this->storage[$key] : null;
    }