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.
Passed
Pull Request — master (#17)
by Oliver
01:48
created
src/Resolver/AliasMap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $count = count($this->references);
49 49
         $this->references = array_filter(
50 50
             $this->references,
51
-            function (AliasReference $reference) use ($baseName) {
51
+            function(AliasReference $reference) use ($baseName) {
52 52
                 return $reference->getBaseName() !== $baseName;
53 53
             }
54 54
         );
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         }
101 101
         return array_filter(
102 102
             $this->references,
103
-            function (AliasReference $reference) use ($alias) {
103
+            function(AliasReference $reference) use ($alias) {
104 104
                 return $reference->getAlias() === $alias;
105 105
             }
106 106
         );
Please login to merge, or discard this patch.