diff --git a/lib/GoCardless/Request.php b/lib/GoCardless/Request.php index 67d6028..02d7c81 100644 --- a/lib/GoCardless/Request.php +++ b/lib/GoCardless/Request.php @@ -125,11 +125,7 @@ protected static function call($method, $url, $params = array()) { // Curl options for POSt $curl_options[CURLOPT_POST] = 1; - - if ( ! empty($params)) { - $curl_options[CURLOPT_POSTFIELDS] = http_build_query($params, null, - '&'); - } + $curl_options[CURLOPT_POSTFIELDS] = http_build_query($params, null, '&'); } elseif ($method == 'get') { // Curl options for GET