FOF30\Container\ContainerBase::__get PHP Méthode

__get() public méthode

Magic getter for alternative syntax, e.g. $container->foo instead of $container['foo']
public __get ( string $name ) : mixed
$name string
Résultat mixed
    function __get($name)
    {
        return $this->offsetGet($name);
    }
ContainerBase