Passed
Pull Request — master (#6)
by
unknown
48:40 queued 13:30
created
src/FeedManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      */
118 118
     public function getNewsFeeds($userId)
119 119
     {
120
-        return array_map(function ($feed) use ($userId) {
120
+        return array_map(function($feed) use ($userId) {
121 121
             return $this->getFeed($feed, $userId);
122 122
         }, array_combine($this->newsFeeds, $this->newsFeeds));
123 123
     }
Please login to merge, or discard this patch.
src/Enrich.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     private function wrapActivities(array $activities)
92 92
     {
93
-        return array_map(function (array $activity) {
93
+        return array_map(function(array $activity) {
94 94
             return new EnrichedActivity($activity);
95 95
         }, $activities);
96 96
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
                     ->where(new Comparison('id', Comparison::IN, $identifiers))
141 141
                 )->getValues();
142 142
 
143
-            $keys = array_map(function ($item) {
143
+            $keys = array_map(function($item) {
144 144
                 return $item->id();
145 145
             }, $result);
146 146
 
Please login to merge, or discard this patch.