@@ -19,13 +19,13 @@ |
||
19 | 19 | // This expression does not work. It looks like the reason is the array-notation... |
20 | 20 | //$locations = $xpath->query('//div[contains(text()[2], "location")]/following-sibling::h2/span'); |
21 | 21 | $locationMarker = $xpath->query("//div[contains(., 'location')]"); |
22 | - if (! $locationMarker || $locationMarker->length == 0) { |
|
22 | + if (!$locationMarker || $locationMarker->length == 0) { |
|
23 | 23 | throw new \InvalidArgumentException('The Event does not seem to have a locationMarker'); |
24 | 24 | } |
25 | 25 | |
26 | 26 | $locations = $xpath->query('.//h2/span', $locationMarker->item(0)->parentNode); |
27 | 27 | |
28 | - if (! $locations || $locations->length == 0) { |
|
28 | + if (!$locations || $locations->length == 0) { |
|
29 | 29 | throw new \InvalidArgumentException('The Event does not seem to have a location'); |
30 | 30 | } |
31 | 31 | $locationArray = []; |
@@ -62,7 +62,7 @@ |
||
62 | 62 | if (strlen($name) < 70) { |
63 | 63 | return $name; |
64 | 64 | } |
65 | - return substr($name, 0, 69) . '…'; |
|
65 | + return substr($name, 0, 69).'…'; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | protected function shortenUri($uri) |