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 (#28)
by Franck
02:04
created
src/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
     {
316 316
         $codingStandardPackages = array_filter(
317 317
             $this->composer->getRepositoryManager()->getLocalRepository()->getPackages(),
318
-            function (PackageInterface $package) {
318
+            function(PackageInterface $package) {
319 319
                 if ($package instanceof AliasPackage) {
320 320
                     return false;
321 321
                 }
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 
393 393
         // Some compatibility fixes for Windows paths
394 394
         $from = is_dir($from) ? rtrim($from, '\/') . '/' : $from;
395
-        $to = is_dir($to)   ? rtrim($to, '\/') . '/'   : $to;
395
+        $to = is_dir($to) ? rtrim($to, '\/') . '/' : $to;
396 396
         $from = str_replace('\\', '/', $from);
397 397
         $to = str_replace('\\', '/', $to);
398 398
 
Please login to merge, or discard this patch.