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 ( ac67d2...4fcf81 )
by Marco
01:48
created
src/Combinator/Any.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,8 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
         $this->validations = $validations;
36 36
         $this->errorFormatter = is_callable($errorFormatter) ?
37
-            $errorFormatter :
38
-            function (array $messages) {
37
+            $errorFormatter : function(array $messages) {
39 38
                 return [
40 39
                     self::NOT_EVEN_ONE => $messages
41 40
                 ];
@@ -65,7 +64,7 @@  discard block
 block discarded – undo
65 64
     {
66 65
         return new self(
67 66
             $validations,
68
-            function (array $messages) use ($translator) {
67
+            function(array $messages) use ($translator) {
69 68
                 return [
70 69
                     $translator->translate(self::NOT_EVEN_ONE) => $messages
71 70
                 ];
@@ -83,7 +82,7 @@  discard block
 block discarded – undo
83 82
 
84 83
         return $result
85 84
             ->mapErrors($this->errorFormatter)
86
-            ->map(function () use ($data) {
85
+            ->map(function() use ($data) {
87 86
                 return $data;
88 87
             });
89 88
     }
Please login to merge, or discard this patch.