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.
Passed
Push — master ( d223c5...da0421 )
by Steeven
02:49
created
src/Services/Language.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
             if (count($this->loaded)) {
108 108
                 foreach ($this->loaded as $fileIndex => $filePath) {
109
-                    unset($this->loaded[ $fileIndex ]);
109
+                    unset($this->loaded[$fileIndex]);
110 110
                     $this->loadFile($fileIndex);
111 111
                 }
112 112
             }
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
         if (is_array($lines)) {
218 218
             if (count($lines)) {
219
-                $this->loaded[ $this->getFileIndex($filePath) ] = $filePath;
219
+                $this->loaded[$this->getFileIndex($filePath)] = $filePath;
220 220
 
221 221
                 $this->lines = array_merge($this->lines, $lines);
222 222
 
@@ -346,9 +346,9 @@  discard block
 block discarded – undo
346 346
         $lineOffset = strtoupper($line);
347 347
 
348 348
         if (empty($context)) {
349
-            $lineContent = isset($this->lines[ $lineOffset ]) ? $this->lines[ $lineOffset ] : $line;
349
+            $lineContent = isset($this->lines[$lineOffset]) ? $this->lines[$lineOffset] : $line;
350 350
         } else {
351
-            $line = isset($this->lines[ $lineOffset ]) ? $this->lines[ $lineOffset ] : $line;
351
+            $line = isset($this->lines[$lineOffset]) ? $this->lines[$lineOffset] : $line;
352 352
             array_unshift($context, $line);
353 353
 
354 354
             $lineContent = @call_user_func_array('sprintf', $context);
Please login to merge, or discard this patch.