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 ( c649f9...f3a625 )
by Stan
01:51
created
src/Api/Entity/InputFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     protected function initFileForUpload()
21 21
     {
22 22
         if (!$this->isFileReadable($this->file)) {
23
-            throw new EntityException('File "' . $this->file . '" is not readable or does not exist!');
23
+            throw new EntityException('File "'.$this->file.'" is not readable or does not exist!');
24 24
         }
25 25
         return fopen($this->file, 'r');
26 26
     }
Please login to merge, or discard this patch.
src/Configuration/AbstractContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         $replace = [];
46 46
 
47 47
         foreach ($tokens as $token) {
48
-            $envKey   = static::ENV_PREFIX . strtoupper(substr($token, 1, strlen($token) - 2));
48
+            $envKey   = static::ENV_PREFIX.strtoupper(substr($token, 1, strlen($token) - 2));
49 49
             $envValue = getenv($envKey);
50 50
 
51 51
             if ($envValue) {
Please login to merge, or discard this patch.