remove debug line

This commit is contained in:
Jeremy Kauffman 2016-08-13 13:13:51 -04:00 committed by GitHub
parent 56be075526
commit 15faeebb50

View file

@ -95,7 +95,6 @@ class Curl
if (in_array($method, [static::PUT, static::POST]))
{
print_r($options['json_data'] ? json_encode($params) : http_build_query($params));
curl_setopt($ch, CURLOPT_POSTFIELDS, $options['json_data'] ? json_encode($params) : http_build_query($params));
}