Restagent\Request::method PHP Method

method() public method

Set HTTP method to use with send()
public method ( $method ) : Request
$method
return Request
    public function method($method)
    {
        $this->method = strtoupper($method);
        return $this;
    }