Prado\Data\SqlMap\DataMapper\TObjectProxy::__call PHP Метод

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

Relay the method call to the handler object (if able to be handled), otherwise it calls the proxied object's method.
public __call ( $method, $params ) : mixed
Результат mixed method return value.
    public function __call($method, $params)
    {
        if ($this->_handler->hasMethod($method)) {
            return $this->_handler->intercept($method, $params);
        } else {
            return call_user_func_array(array($this->_object, $method), $params);
        }
    }