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 ( c0ce6f...b2932c )
by Matthew
07:18
created
src/FileLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function load($fileName, $refresh = false)
186 186
     {
187
-        $cachePath = $this->getCacheDirectory() . DIRECTORY_SEPARATOR . $fileName . '.php';
187
+        $cachePath = $this->getCacheDirectory().DIRECTORY_SEPARATOR.$fileName.'.php';
188 188
         $cache     = new ConfigCache($cachePath, $this->debug);
189 189
 
190 190
         if ($refresh || !$cache->isFresh()) {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
         $tree = $configuration->getConfigTreeBuilder()->buildTree();
221 221
         $name = $tree->getName();
222 222
 
223
-        $cachePath = $this->getCacheDirectory() . DIRECTORY_SEPARATOR . $fileName . '.config.' . $name . '.php';
223
+        $cachePath = $this->getCacheDirectory().DIRECTORY_SEPARATOR.$fileName.'.config.'.$name.'.php';
224 224
         $cache     = new ConfigCache($cachePath, $this->debug);
225 225
 
226 226
         if ($refresh || !$cache->isFresh()) {
Please login to merge, or discard this patch.