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 ( 394cf2...003ff0 )
by Constantin
02:34
created
src/Gica/CodeAnalysis/Shared/ClassSorter/ByConstructorDependencySorter.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
47 47
     }
48 48
 
49 49
 
50
+    /**
51
+     * @param string[] $classes
52
+     */
50 53
     private function isParentClassOfAny(\ReflectionClass $parentClass, $classes)
51 54
     {
52 55
         $comparator = new SubclassComparator();
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $comparator = new SubclassComparator();
53 53
 
54
-        $isASubClassOrSameClass = function ($class) use ($parentClass, $comparator) {
54
+        $isASubClassOrSameClass = function($class) use ($parentClass, $comparator) {
55 55
 
56 56
             return $comparator->isASubClassOrSameClass($class, $parentClass->getName());
57 57
         };
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
      */
74 74
     private function classNameFromParameters(array $parameters)
75 75
     {
76
-        $strings = array_map(function (\ReflectionParameter $parameter) {
76
+        $strings = array_map(function(\ReflectionParameter $parameter) {
77 77
             return $this->classNameFromParameter($parameter);
78 78
         }, $parameters);
79 79
 
80
-        return array_filter($strings, function ($s) {
80
+        return array_filter($strings, function($s) {
81 81
             return !!$s;
82 82
         });
83 83
     }
Please login to merge, or discard this patch.