Milo\Github\Api::delete PHP Method

delete() public method

See also: createRequest()
See also: request()
public delete ( $urlPath, array $parameters = [], array $headers = [] ) : Milo\Github\Http\Response
$parameters array
$headers array
return Milo\Github\Http\Response
    public function delete($urlPath, array $parameters = [], array $headers = [])
    {
        return $this->request($this->createRequest(Http\Request::DELETE, $urlPath, $parameters, $headers));
    }