Skip to content
Snippets Groups Projects
Commit 6950e6dd authored by Kevin Saliou's avatar Kevin Saliou
Browse files

Merge pull request #40 from Art4/patch-2

Fixed broken retrieveAll() method
parents 691e1451 1a62b52b
No related merge requests found
......@@ -91,6 +91,9 @@ abstract class AbstractApi
$params = array_filter(array_merge($defaults, $params));
$ret = array();
$limit = $params['limit'];
$offset = $params['offset'];
while ($limit > 0) {
if ($limit > 100) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment