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
Branch master (f866c3)
by Franck
01:43
created
src/Plugin.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -209,11 +209,11 @@
 block discarded – undo
209 209
             $packageInstallPath = $this->composer->getInstallationManager()->getInstallPath($package);
210 210
             $finder = new Finder();
211 211
             $finder->files()
212
-              ->ignoreVCS(true)
213
-              ->in($packageInstallPath)
214
-              ->depth('> 1')
215
-              ->depth('< 4')
216
-              ->name('ruleset.xml');
212
+                ->ignoreVCS(true)
213
+                ->in($packageInstallPath)
214
+                ->depth('> 1')
215
+                ->depth('< 4')
216
+                ->name('ruleset.xml');
217 217
             foreach ($finder as $ruleset) {
218 218
                 $standardsPath = dirname(dirname($ruleset));
219 219
                 if (in_array($standardsPath, $this->installedPaths, true) === false) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
     {
237 237
         $codingStandardPackages = array_filter(
238 238
             $this->composer->getRepositoryManager()->getLocalRepository()->getPackages(),
239
-            function (PackageInterface $package) {
239
+            function(PackageInterface $package) {
240 240
                 if ($package instanceof AliasPackage) {
241 241
                     return false;
242 242
                 }
Please login to merge, or discard this patch.