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 (#22)
by joseph
03:23
created
src/Psr4Validator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -137,11 +137,11 @@
 block discarded – undo
137 137
     private function addMissingPathError(string $path, string $namespaceRoot, string $absPathRoot)
138 138
     {
139 139
         $invalidPathMessage = "Namespace root '$namespaceRoot'".
140
-                              "\ncontains a path '$path''".
141
-                              "\nwhich doesn't exist\n";
140
+                                "\ncontains a path '$path''".
141
+                                "\nwhich doesn't exist\n";
142 142
         if (stripos($absPathRoot, "Magento") !== false) {
143 143
             $invalidPathMessage .= 'Magento\'s composer includes this by default, '
144
-                                   .'it should be removed from the psr-4 section';
144
+                                    .'it should be removed from the psr-4 section';
145 145
         }
146 146
         $this->missingPaths[$path] = $invalidPathMessage;
147 147
     }
Please login to merge, or discard this patch.
src/Markdown/LinksChecker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                 '',
123 123
                 \dirname($file)
124 124
             );
125
-            $start           .= '/'.\rtrim($relativeSubdirs, '/');
125
+            $start .= '/'.\rtrim($relativeSubdirs, '/');
126 126
         }
127 127
         $realpath = \realpath($start.'/'.$path);
128 128
         if (empty($realpath) || (!\file_exists($realpath) && !\is_dir($realpath))) {
@@ -181,6 +181,6 @@  discard block
 block discarded – undo
181 181
             $link,
182 182
             var_export($result, true)
183 183
         );
184
-        $return   = 1;
184
+        $return = 1;
185 185
     }
186 186
 }
Please login to merge, or discard this patch.