GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 738862...084acb )
by Julien
01:20
created
src/Captioning/Format/WebvttFile.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
                     $parsing_errors[] = $e->getMessage();
57 57
                 }
58 58
             } else {
59
-                $parsing_errors[] = 'Incorrect Region definition at line ' . $i;
59
+                $parsing_errors[] = 'Incorrect Region definition at line '.$i;
60 60
             }
61 61
             ++$i;
62 62
             $line = $this->getNextValueFromArray($fileContentArray);
@@ -96,13 +96,13 @@  discard block
 block discarded – undo
96 96
             if ($timecode_match) {
97 97
                 $start = $matches[1];
98 98
                 $stop = $matches[2];
99
-                $settings = isset($matches[3]) ? trim($matches[3]): '';
99
+                $settings = isset($matches[3]) ? trim($matches[3]) : '';
100 100
 
101 101
                 // Cue continues until there is a blank line.
102 102
                 $text = '';
103 103
                 ++$i;
104 104
                 while (trim($line = $this->getNextValueFromArray($fileContentArray)) !== '') {
105
-                    $text .= $line . $this->lineEnding;
105
+                    $text .= $line.$this->lineEnding;
106 106
                     ++$i;
107 107
                 }
108 108
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
                 // Supposse what not empty line before timeline is id.
116 116
                 $id = $line;
117 117
             } else {
118
-                $parsing_errors[] = 'Malformed cue detected at line ' . $i;
118
+                $parsing_errors[] = 'Malformed cue detected at line '.$i;
119 119
             }
120 120
             ++$i;
121 121
         } while (($line = $this->getNextValueFromArray($fileContentArray)) !== false);
Please login to merge, or discard this patch.