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 ( 6f0274...6e1337 )
by Constantin
02:41
created
src/Gica/CodeAnalysis/Shared/ClassSorter/ByConstructorDependencySorter.php 1 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->name);
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.