Create a DELETE request for the client
string|array $uri Resource URI:
array|Collection $headers HTTP headers:
string|resource|EntityBodyInterface $body Body to send in the request:
EntityEnclosingRequestInterface
Overrides ClientInterface::delete
Guzzle\Http\ClientInterface::createRequest()
public function delete($uri = null, $headers = null, $body = null) {
return $this
->createRequest('DELETE', $uri, $headers, $body);
}