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 ( 59446a...77a017 )
by Constantin
02:32
created
src/Gica/CodeAnalysis/MethodListenerDiscovery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     private function sortListeners($listeners)
118 118
     {
119
-        usort($listeners, function (ListenerMethod $a, ListenerMethod $b) {
119
+        usort($listeners, function(ListenerMethod $a, ListenerMethod $b) {
120 120
             return $this->classSorter->__invoke($a->getClass(), $b->getClass());
121 121
         });
122 122
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
     protected function filterFiles(array $files)
140 140
     {
141
-        return array_filter($files, function ($file) {
141
+        return array_filter($files, function($file) {
142 142
             return $this->isListenerFileName($file);
143 143
         });
144 144
     }
Please login to merge, or discard this patch.