From d63631116e357df2f933a0f56ebf9cd7248a3eff Mon Sep 17 00:00:00 2001 From: vionash <61507189+vionash@users.noreply.github.com> Date: Sun, 20 Nov 2022 19:30:31 -0600 Subject: [PATCH] Update ApiRequestor.php Delete print --- lib/ApiRequestor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ApiRequestor.php b/lib/ApiRequestor.php index 578ff84..01db015 100644 --- a/lib/ApiRequestor.php +++ b/lib/ApiRequestor.php @@ -109,7 +109,7 @@ public function request($method, $url, $params = null, $headers = null) $params = $params ?: []; $headers = $headers ?: []; list($rbody, $rcode, $rheaders, $myApiKey) = $this->_requestRaw($method, $url, $params, $headers); - print_r($rbody); die; + $json = $this->_interpretResponse($rbody, $rcode, $rheaders); $resp = new ApiResponse($rbody, $rcode, $rheaders, $json);