Completed
Push — master ( edb296...229bfb )
by Felix
40s
created
src/Api/StatSites.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         } while ($response['resultsreturned'] < $response['totalresults']);
29 29
 
30 30
 
31
-        $sites->transform(function ($site) {
31
+        $sites->transform(function($site) {
32 32
             return new StatSite([
33 33
                 'id' => $site['Id'],
34 34
                 'project_id' => $site['ProjectId'],
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             $sites = collect($response['Result']);
68 68
         }
69 69
 
70
-        $sites->transform(function ($site) use ($projectID) {
70
+        $sites->transform(function($site) use ($projectID) {
71 71
             return new StatSite([
72 72
                 'id' => $site['Id'],
73 73
                 'project_id' => $projectID,
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
             $rankDistribution = collect([$response['RankDistribution']]);
104 104
         }
105 105
 
106
-        $rankDistribution->transform(function ($distribution) {
106
+        $rankDistribution->transform(function($distribution) {
107 107
             return $this->transformRankDistribution($distribution);
108 108
         });
109 109
 
Please login to merge, or discard this patch.