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

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

public __call ( $Name, $Arguments )
    public function __call($Name, $Arguments)
    {
        if ($this->HasParentMethod(__FUNCTION__)) {
            $this->__Load();
            return $this->FowardMethodCall(__FUNCTION__, func_get_args());
        } else {
            trigger_error(sprintf('Call to undefined method %s::%s()', static::$__EntityClassName, $Name), E_USER_ERROR);
        }
    }