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 ( 4d2703...d31486 )
by Constantin
03:15
created
MethodListenerDiscovery/ClassSorter/ByConstructorDependencySorter.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
 
55
+    /**
56
+     * @param string[] $classes
57
+     */
55 58
     private function isParentClassOfAny(\ReflectionClass $parentClass, $classes)
56 59
     {
57 60
         $isSubClassOf = function ($class) use ($parentClass) {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     private function isParentClassOfAny(\ReflectionClass $parentClass, $classes)
56 56
     {
57
-        $isSubClassOf = function ($class) use ($parentClass) {
57
+        $isSubClassOf = function($class) use ($parentClass) {
58 58
             return $parentClass->name === $class || is_subclass_of($class, $parentClass->name, true);
59 59
         };
60 60
 
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
      */
76 76
     private function classNameFromParameters(array $parameters)
77 77
     {
78
-        $strings = array_map(function (\ReflectionParameter $parameter) {
78
+        $strings = array_map(function(\ReflectionParameter $parameter) {
79 79
             return $this->classNameFromParameter($parameter);
80 80
         }, $parameters);
81 81
 
82
-        return array_filter($strings, function ($s) {
82
+        return array_filter($strings, function($s) {
83 83
             return !!$s;
84 84
         });
85 85
     }
Please login to merge, or discard this patch.