FOF30\Container\ContainerBase::__get PHP Method

__get() public method

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