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 ( fc95ec...43d2a2 )
by Julien
04:59
created
src/Captioning/Format/SubripFile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,16 +93,16 @@
 block discarded – undo
93 93
 
94 94
             $passedValidation = true;
95 95
             if ($subtitle[0] != $subtitleOrder++) {
96
-                $errorMsg = 'Invalid subtitle order index: ' . $subtitle[0];
96
+                $errorMsg = 'Invalid subtitle order index: '.$subtitle[0];
97 97
                 $passedValidation = false;
98 98
             } elseif (!$this->validateTimelines($subtitleTimeStart, $subtitleTimeEnd, !$this->options['_requireStrictFileFormat'])) {
99
-                $errorMsg = 'Ending time invalid: ' . $subtitleTimeEnd;
99
+                $errorMsg = 'Ending time invalid: '.$subtitleTimeEnd;
100 100
                 $passedValidation = false;
101 101
             } elseif (
102 102
                 $this->options['_requireStrictFileFormat'] && // Allow overlapping timecodes when not in "strict mode"
103 103
                 !$this->validateTimelines($subtitleTime, $subtitleTimeStart, true)
104 104
             ) {
105
-                $errorMsg = 'Starting time invalid: ' . $subtitleTimeStart;
105
+                $errorMsg = 'Starting time invalid: '.$subtitleTimeStart;
106 106
                 $passedValidation = false;
107 107
             }
108 108
 
Please login to merge, or discard this patch.