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 ( e55f0d...bd2fd5 )
by Marco
02:55
created
src/Combinator/Associative.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
                  * @param Validation $validation
49 49
                  * @return Validation
50 50
                  */
51
-                static function ($key, Validation $validation) {
51
+                static function($key, Validation $validation) {
52 52
                     return MapErrors::to(
53 53
                         Sequence::validations([
54 54
                             HasKey::withKey($key),
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
                                  * @param array $wholeData
58 58
                                  * @return mixed
59 59
                                  */
60
-                                static function (array $wholeData) use ($key) {
60
+                                static function(array $wholeData) use ($key) {
61 61
                                     return $wholeData[$key];
62 62
                                 },
63 63
                                 $validation
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
                          * @param array $messages
68 68
                          * @return array
69 69
                          */
70
-                        static function (array $messages) use ($key) {
70
+                        static function(array $messages) use ($key) {
71 71
                             return [$key => $messages];
72 72
                         }
73 73
                     );
Please login to merge, or discard this patch.