@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | public function render(ResponseInterface $response, array $data = [], int $status = 200): ResponseInterface |
38 | 38 | { |
39 | 39 | $icalendar = new VCalendar(); |
40 | - if (! isset($data['cfps'])) { |
|
40 | + if (!isset($data['cfps'])) { |
|
41 | 41 | $data['cfps'] = []; |
42 | 42 | } |
43 | 43 | foreach ($data['cfps'] as $cfp) { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | 'DTSTAMP' => $lastChange, |
59 | 59 | 'UID' => $cfp['_rel']['cfp_uri'], |
60 | 60 | 'DESCRIPTION' => $cfp['description'], |
61 | - 'GEO' => round($cfp['latitude'], 6) . ';' . round($cfp['longitude'], 6), |
|
61 | + 'GEO' => round($cfp['latitude'], 6).';'.round($cfp['longitude'], 6), |
|
62 | 62 | 'LOCATION' => $cfp['location'], |
63 | 63 | |
64 | 64 | ]); |