Gajus\Fuss\Request::setMethod PHP Method

setMethod() private method

private setMethod ( string $method ) : null
$method string
return null
    private function setMethod($method)
    {
        if ($method != 'GET' && $method != 'POST' && $method != 'DELETE') {
            throw new Exception\RequestException('Invalid request method.');
        }
        $this->method = $method;
    }