ManaPHP\Di::__get PHP Method

__get() public method

Magic method __get
public __get ( string $propertyName ) : mixed
$propertyName string
return mixed
    public function __get($propertyName)
    {
        if ($this->has($propertyName)) {
            return $this->getShared($propertyName);
        }
        return null;
    }