diff --git a/src/Network/HTTPClient.php b/src/Network/HTTPClient.php index cd1d9e46b3..f4653628ff 100644 --- a/src/Network/HTTPClient.php +++ b/src/Network/HTTPClient.php @@ -131,10 +131,9 @@ class HTTPClient implements IHTTPClient try { switch ($method) { case 'get': - $response = $this->client->get($url, $conf); - break; case 'head': - $response = $this->client->head($url, $conf); + case 'post': + $response = $this->client->$method($url, $conf); break; default: throw new TransferException('Invalid method');