@@ -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]; |
@@ -30,18 +30,18 @@ |
||
| 30 | 30 | //$endDate = $xpath->query('//div[contains(text()[2], "event ends")]/following-sibling::h2'); |
| 31 | 31 | $endDate = $xpath->query('//div[contains(text(), "event ends")]'); |
| 32 | 32 | |
| 33 | - if (! $endDate || $endDate->length == 0) { |
|
| 33 | + if (!$endDate || $endDate->length == 0) { |
|
| 34 | 34 | // This expression does not work. It looks like the reason is the array-notation... |
| 35 | 35 | //$endDate = $xpath->query('//div[contains(text()[2], "event date")]/following-sibling::h2'); |
| 36 | 36 | $endDate = $xpath->query('//div[contains(text(), "event date")]'); |
| 37 | 37 | } |
| 38 | - if (! $endDate || $endDate->length == 0) { |
|
| 38 | + if (!$endDate || $endDate->length == 0) { |
|
| 39 | 39 | throw new \InvalidArgumentException('The Event does not seem to have an end date'); |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | $endDate = $xpath->query('h2', $endDate->item(0)->parentNode); |
| 43 | 43 | |
| 44 | - if (! $endDate || $endDate->length == 0) { |
|
| 44 | + if (!$endDate || $endDate->length == 0) { |
|
| 45 | 45 | throw new \InvalidArgumentException('The Event does not seem to have an end date'); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $closingDateHolder = $xpath->query('//div[./div/span[contains(text(), "Call closes at")]] | //div[./div/span[contains(text(), "CfS closes at")]]'); |
| 32 | 32 | |
| 33 | - if (! $closingDateHolder || $closingDateHolder->length == 0) { |
|
| 33 | + if (!$closingDateHolder || $closingDateHolder->length == 0) { |
|
| 34 | 34 | throw new InvalidArgumentException('The CfP does not seem to have a closing date'); |
| 35 | 35 | } |
| 36 | 36 | |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | $closingHour = $this->clearClosingHour($closingHour); |
| 41 | 41 | |
| 42 | - return new DateTimeImmutable($closingDay . ' ' . $closingHour, $this->timezone); |
|
| 42 | + return new DateTimeImmutable($closingDay.' '.$closingHour, $this->timezone); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | private function clearClosingHour(string $closingHour) : string |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $name = $this->shortenName($cfp->conferenceName); |
| 46 | 46 | $uri = $this->shortenUri($cfp->uri); |
| 47 | - $tags = ' #' . implode(' #', $cfp->tags); |
|
| 47 | + $tags = ' #'.implode(' #', $cfp->tags); |
|
| 48 | 48 | |
| 49 | 49 | $notificationString = sprintf(<<<'NOTIFICATION' |
| 50 | 50 | 24 hours until the CfP for "%1$s" closes: %2$s |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | if (strlen($name) < 70) { |
| 68 | 68 | return $name; |
| 69 | 69 | } |
| 70 | - return substr($name, 0, 69) . '…'; |
|
| 70 | + return substr($name, 0, 69).'…'; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | protected function shortenUri($uri) |