@@ -48,7 +48,7 @@ |
||
48 | 48 | return $this->departures; |
49 | 49 | } |
50 | 50 | |
51 | - if( true === empty($filter)) { |
|
51 | + if (true === empty($filter)) { |
|
52 | 52 | return $this->departures; |
53 | 53 | } |
54 | 54 |
@@ -67,7 +67,7 @@ |
||
67 | 67 | $stringToAnalyze = trim(str_replace('Linie(n)', '', $item)); |
68 | 68 | $linesString = explode(':', $stringToAnalyze)[0]; |
69 | 69 | $object->affectedLines = explode(',', $linesString); |
70 | - array_walk($object->affectedLines, function (&$item) { |
|
70 | + array_walk($object->affectedLines, function(&$item) { |
|
71 | 71 | $item = trim($item); |
72 | 72 | }); |
73 | 73 |
@@ -11,5 +11,5 @@ |
||
11 | 11 | |
12 | 12 | $b = new HttpGetInterruptions(); |
13 | 13 | |
14 | -$r =$b->doRequest(); |
|
14 | +$r = $b->doRequest(); |
|
15 | 15 | print_r($r); |
16 | 16 | \ No newline at end of file |