Passed
Branch develop (cd0f67)
by Nils
11:25
created
Category
src/Retriever.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,9 @@
 block discarded – undo
61 61
     {
62 62
         $page = 1;
63 63
 
64
-        if ($maxPages === -1) $maxPages = 10000000;
64
+        if ($maxPages === -1) {
65
+            $maxPages = 10000000;
66
+        }
65 67
 
66 68
         while ($page < $this->maxNumberOfPages && $page <= $maxPages) {
67 69
             $url = $this->getApiUrl($page, $requestsPerPage);
Please login to merge, or discard this patch.