Completed
Pull Request — master (#120)
by Andreas
18s
created
src/Subcommands/Sessionize/Parser/EventEndDate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,18 +30,18 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Subcommands/Sessionize/Parser/ClosingDate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Notification/MastodonNotifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)
Please login to merge, or discard this patch.