Jyxo\Spl\ObjectCache::__get PHP Method

__get() public method

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