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 v2 (b7a21f)
by Oliver
06:19 queued 03:39
created
src/Resolver/PharInvocationResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
             return null;
93 93
         }
94 94
         return Manager::instance()->getCollection()->findByCallback(
95
-            function (PharInvocation $candidate) use ($possibleAlias) {
95
+            function(PharInvocation $candidate) use ($possibleAlias) {
96 96
                 return $candidate->getAlias() === $possibleAlias;
97 97
             },
98 98
             true
Please login to merge, or discard this patch.
src/Resolver/PharInvocationCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             return true;
79 79
         }
80 80
         return $this->findByCallback(
81
-                function (PharInvocation $candidate) use ($invocation) {
81
+                function(PharInvocation $candidate) use ($invocation) {
82 82
                     return $candidate->getBaseName() === $invocation->getBaseName();
83 83
                 }
84 84
             ) === null;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             return true;
99 99
         }
100 100
         return $this->findByCallback(
101
-                function (PharInvocation $candidate) use ($invocation) {
101
+                function(PharInvocation $candidate) use ($invocation) {
102 102
                     return $candidate->equals($invocation);
103 103
                 }
104 104
             ) === null;
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     private function triggerDuplicateAliasWarning(PharInvocation $invocation)
111 111
     {
112 112
         $sameAliasInvocation = $this->findByCallback(
113
-            function (PharInvocation $candidate) use ($invocation) {
113
+            function(PharInvocation $candidate) use ($invocation) {
114 114
                 return $candidate->getAlias() === $invocation->getAlias();
115 115
             },
116 116
             true
Please login to merge, or discard this patch.