remove vardump from getFullList

This commit is contained in:
Jonathan Martz
2024-11-14 16:54:18 +01:00
parent ad593198b0
commit 2ab938c2f4

View File

@@ -97,8 +97,6 @@ class Collection
$getParams = !empty($queryParams) ? http_build_query($queryParams) : ""; $getParams = !empty($queryParams) ? http_build_query($queryParams) : "";
$response = $this->doRequest($this->url . "/api/collections/" . $this->collection . "/records?" . $getParams, 'GET'); $response = $this->doRequest($this->url . "/api/collections/" . $this->collection . "/records?" . $getParams, 'GET');
var_dump($response);
return json_decode($response, JSON_FORCE_OBJECT); return json_decode($response, JSON_FORCE_OBJECT);
} }