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
Push — master ( 9ae92e...1f59e9 )
by Constantin
02:42
created
MapCodeGenerator/GroupedByListenerMapCodeGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     protected function addClassToLines(array $eventListenerMethods)
15 15
     {
16
-        return array_map(function (ListenerMethod $listener) {
16
+        return array_map(function(ListenerMethod $listener) {
17 17
             return $this->spaces(self::SPACES_AT_HANDLERS) .
18 18
                 '[' . $this->prependSlash($listener->getEventClassName()) . '::class' . ', \'' . $listener->getMethodName() . '\'],';
19 19
         }, $eventListenerMethods);
Please login to merge, or discard this patch.
MethodListenerDiscovery/MapCodeGenerator/GroupedByEventMapCodeGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     protected function addClassToLines(array $listeners)
15 15
     {
16
-        return array_map(function (ListenerMethod $listener) {
16
+        return array_map(function(ListenerMethod $listener) {
17 17
             return $this->spaces(self::SPACES_AT_HANDLERS) .
18 18
                 '[' . $this->prependSlash($listener->getClassName()) . '::class' . ', \'' . $listener->getMethodName() . '\'],';
19 19
         }, $listeners);
Please login to merge, or discard this patch.