Completed
Push — master ( 9ee5fa...033e0d )
by Risan Bagja
02:50
created
src/Collections/DepartureCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function type($type)
17 17
     {
18
-        return $this->filter(function ($departure) use ($type) {
18
+        return $this->filter(function($departure) use ($type) {
19 19
             return $departure->type() === $type;
20 20
         });
21 21
     }
Please login to merge, or discard this patch.
src/Mappers/DepartureMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
      */
168 168
     private function createDepartures(array $items, $type, $subType)
169 169
     {
170
-        return array_map(function ($departure) use ($type, $subType) {
170
+        return array_map(function($departure) use ($type, $subType) {
171 171
             return new Departure(
172 172
                 $departure['LineNumber'],
173 173
                 $type,
Please login to merge, or discard this patch.