Ergo\Routing\RoutedRequest::__call PHP Method

__call() public method

Proxy method calls to delegate HttpRequest.
public __call ( $method, $parameters )
    public function __call($method, $parameters)
    {
        if (!method_exists($this->_delegate, $method)) {
            throw new \BadMethodCallException("Request has no {$method}() method");
        }
        return call_user_func_array(array($this->_delegate, $method), $parameters);
    }