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
Branch master (ed763a)
by joseph
03:23
created
src/Psr4Validator.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             $errors['Ignored Files:'] = $this->ignoredFiles;
41 41
         }
42 42
         echo "\nErrors found:\n"
43
-             .\var_export($errors, true);
43
+                .\var_export($errors, true);
44 44
         throw new \RuntimeException(
45 45
             'Errors validating PSR4'
46 46
         );
@@ -159,11 +159,11 @@  discard block
 block discarded – undo
159 159
                     $realAbsPathRoot = \realpath($absPathRoot);
160 160
                     if (false === $realAbsPathRoot) {
161 161
                         $invalidPathMessage = "Namespace root '$namespaceRoot'".
162
-                                              "\ncontains a path '$path''".
163
-                                              "\nwhich doesn't exist\n";
162
+                                                "\ncontains a path '$path''".
163
+                                                "\nwhich doesn't exist\n";
164 164
                         if (strpos($absPathRoot, "Magento") !== false) {
165 165
                             $invalidPathMessage .= 'Magento\'s composer includes this by default, '
166
-                                                   .'it should be removed from the psr-4 section';
166
+                                                    .'it should be removed from the psr-4 section';
167 167
                         }
168 168
                         throw new \RuntimeException($invalidPathMessage);
169 169
                     }
Please login to merge, or discard this patch.