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 ( 7386b2...0aa0d8 )
by Constantin
04:33 queued 01:31
created
MethodListenerDiscovery/ClassSorter/ByConstructorDependencySorter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,11 +74,11 @@
 block discarded – undo
74 74
      */
75 75
     private function classNameFromParameters(array $parameters)
76 76
     {
77
-        $strings = array_map(function (\ReflectionParameter $parameter) {
77
+        $strings = array_map(function(\ReflectionParameter $parameter) {
78 78
             return $this->classNameFromParameter($parameter);
79 79
         }, $parameters);
80 80
 
81
-        return array_filter($strings, function ($s) {
81
+        return array_filter($strings, function($s) {
82 82
             return !!$s;
83 83
         });
84 84
     }
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/MethodListenerDiscovery/ReadModelMapperWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     private function addClassToEvents(array $eventListenerMethods)
54 54
     {
55
-        return array_map(function (ListenerMethod $listener) {
55
+        return array_map(function(ListenerMethod $listener) {
56 56
             return $this->spaces(self::SPACES_AT_HANDLERS) . '[' . $this->prependSlash($listener->getEventClassName()) . '::class' . ', \'' . $listener->getMethodName() . '\'],';
57 57
         }, $eventListenerMethods);
58 58
     }
Please login to merge, or discard this patch.
Gica/CodeAnalysis/MethodListenerDiscovery/MethodListenerMapperWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     private function addClassToListeners(array $listeners)
54 54
     {
55
-        return array_map(function (ListenerMethod $listener) {
55
+        return array_map(function(ListenerMethod $listener) {
56 56
             return $this->spaces(self::SPACES_AT_HANDLERS) . '[' . $this->prependSlash($listener->getClassName()) . '::class' . ', \'' . $listener->getMethodName() . '\'],';
57 57
         }, $listeners);
58 58
     }
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/ClassDiscovery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 
109 109
     protected function filterFiles(array $files)
110 110
     {
111
-        return array_filter($files, function ($file) {
111
+        return array_filter($files, function($file) {
112 112
             return $this->isListenerFileName($file);
113 113
         });
114 114
     }
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/MethodListenerDiscovery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
      */
128 128
     private function sortListeners($listeners)
129 129
     {
130
-        usort($listeners, function (ListenerMethod $a, ListenerMethod $b) {
130
+        usort($listeners, function(ListenerMethod $a, ListenerMethod $b) {
131 131
             return $this->classSorter->__invoke($a->getClass(), $b->getClass());
132 132
         });
133 133
 
Please login to merge, or discard this patch.