Elgg\DeprecationWrapper::__get PHP Method

__get() public method

Get a property on the object
public __get ( string $name ) : mixed
$name string Property name
return mixed
    public function __get($name)
    {
        $this->displayWarning();
        return $this->object->{$name};
    }