Completed
Push — master ( eb518e...509073 )
by Felix
06:40
created
src/Api/StatSites.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
             $start += 5000;
18 18
             $sites = $sites->merge($response['Result']);
19 19
 
20
-            if(!isset($response['nextpage'])) {
20
+            if (!isset($response['nextpage'])) {
21 21
                 break;
22 22
             }
23 23
         } while ($response['resultsreturned'] < $response['totalresults']);
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
         $rankDistribution = collect($response['RankDistribution']);
45 45
 
46
-        if(isset($response['RankDistribution']['date'])) {
46
+        if (isset($response['RankDistribution']['date'])) {
47 47
             $rankDistribution = collect([$response['RankDistribution']]);
48 48
         }
49 49
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
         $response = $this->performQuery('sites/delete', ['id' => $siteID]);
74 74
 
75
-        return (int) $response['Result']['Id'];
75
+        return (int)$response['Result']['Id'];
76 76
     }
77 77
 
78 78
 }
Please login to merge, or discard this patch.