@@ -13,12 +13,12 @@ |
||
13 | 13 | |
14 | 14 | class ConfigService |
15 | 15 | { |
16 | - private $configFile = __DIR__ . '/../../config/callingallpapers.ini'; |
|
16 | + private $configFile = __DIR__.'/../../config/callingallpapers.ini'; |
|
17 | 17 | |
18 | 18 | public function __construct() {} |
19 | 19 | |
20 | 20 | public function getConfiguration(): array |
21 | 21 | { |
22 | - return parse_ini_file($this->configFile)??[]; |
|
22 | + return parse_ini_file($this->configFile) ?? []; |
|
23 | 23 | } |
24 | 24 | } |
25 | 25 | \ No newline at end of file |
@@ -109,12 +109,12 @@ |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | // We are not interersted in events without a CFP-Url |
112 | - if (($event['cfpLink']??'') === '') { |
|
112 | + if (($event['cfpLink'] ?? '') === '') { |
|
113 | 113 | continue; |
114 | 114 | } |
115 | 115 | |
116 | 116 | // We are not interested in Events without a website |
117 | - if (($event['website']??'') === '') { |
|
117 | + if (($event['website'] ?? '') === '') { |
|
118 | 118 | continue; |
119 | 119 | } |
120 | 120 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Copyright Andrea Heigl <[email protected]> |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | $cfp = new Cfp(); |
88 | 88 | |
89 | 89 | try { |
90 | - $cfp->location = $event['location']['full']??''; |
|
91 | - if ($event['location']['coordinates']??null !== null) { |
|
90 | + $cfp->location = $event['location']['full'] ?? ''; |
|
91 | + if ($event['location']['coordinates'] ?? null !== null) { |
|
92 | 92 | $location = explode(',', $event['location']['coordinates']); |
93 | 93 | $cfp->latitude = $location[0]; |
94 | 94 | $cfp->longitude = $location[1]; |