lithium\net\http\Service::__call PHP Method

__call() public method

Magic method to handle other HTTP methods.
public __call ( string $method, string $params = [] ) : mixed
$method string
$params string
return mixed
    public function __call($method, $params = array())
    {
        array_unshift($params, $method);
        return $this->invokeMethod('send', $params);
    }