Elgg\Application::__get PHP 메소드

__get() 공개 메소드

Get an undefined property
public __get ( string $name ) : mixed
$name string The property name accessed
리턴 mixed
    public function __get($name)
    {
        if (isset(self::$public_services[$name])) {
            return $this->services->{$name};
        }
        trigger_error("Undefined property: " . __CLASS__ . ":\${$name}");
    }