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
Pull Request — master (#53)
by joseph
04:58 queued 01:08
created
src/Markdown/LinksChecker.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -175,14 +175,14 @@
 block discarded – undo
175 175
         #$start          = microtime(true);
176 176
         #fwrite(STDERR, "\n".'Validating link: '.$href);
177 177
         $context = stream_context_create([
178
-                                             'http' => [
179
-                                                 'method'           => 'HEAD',
180
-                                                 'protocol_version' => 1.1,
181
-                                                 'header'           => [
182
-                                                     'Connection: close',
183
-                                                 ],
184
-                                             ],
185
-                                         ]);
178
+                                                'http' => [
179
+                                                    'method'           => 'HEAD',
180
+                                                    'protocol_version' => 1.1,
181
+                                                    'header'           => [
182
+                                                        'Connection: close',
183
+                                                    ],
184
+                                                ],
185
+                                            ]);
186 186
         $result  = null;
187 187
         try {
188 188
             $headers = get_headers($href, 0, $context);
Please login to merge, or discard this patch.
src/Psr4Validator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -176,11 +176,11 @@
 block discarded – undo
176 176
     private function addMissingPathError(string $path, string $namespaceRoot, string $absPathRoot): void
177 177
     {
178 178
         $invalidPathMessage = "Namespace root '$namespaceRoot'".
179
-                              "\ncontains a path '$path''".
180
-                              "\nwhich doesn't exist\n";
179
+                                "\ncontains a path '$path''".
180
+                                "\nwhich doesn't exist\n";
181 181
         if (stripos($absPathRoot, "Magento") !== false) {
182 182
             $invalidPathMessage .= 'Magento\'s composer includes this by default, '
183
-                                   .'it should be removed from the psr-4 section';
183
+                                    .'it should be removed from the psr-4 section';
184 184
         }
185 185
         $this->missingPaths[$path] = $invalidPathMessage;
186 186
     }
Please login to merge, or discard this patch.