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 (#15)
by Franck
02:35
created
src/Plugin.php 2 patches
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.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -267,11 +267,11 @@
 block discarded – undo
267 267
             $packageInstallPath = $this->composer->getInstallationManager()->getInstallPath($package);
268 268
             $finder = new Finder();
269 269
             $finder->files()
270
-              ->ignoreVCS(true)
271
-              ->in($packageInstallPath)
272
-              ->depth('>= 1')
273
-              ->depth('< 4')
274
-              ->name('ruleset.xml');
270
+                ->ignoreVCS(true)
271
+                ->in($packageInstallPath)
272
+                ->depth('>= 1')
273
+                ->depth('< 4')
274
+                ->name('ruleset.xml');
275 275
             foreach ($finder as $ruleset) {
276 276
                 $standardsPath = dirname(dirname($ruleset));
277 277
                 if (in_array($standardsPath, $this->installedPaths, true) === false) {
Please login to merge, or discard this patch.