Storm\Drivers\Base\Object\Properties\Proxies\EntityProxyFunctionality::__get PHP Метод

__get() публичный Метод

public __get ( $Name )
    public function __get($Name)
    {
        $this->__Load();
        if ($this->HasParentMethod(__FUNCTION__)) {
            return $this->FowardMethodCall(__FUNCTION__, func_get_args());
        } else {
            if (isset($this->{$Name}) || property_exists($this, $Name)) {
                return $this->{$Name};
            } else {
                trigger_error(sprintf('Undefined property: %s::$%s', static::$__EntityClassName, $Name), E_USER_NOTICE);
            }
        }
    }