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 — devel ( a59919...df32c1 )
by Alex
7s
created
src/Serialization/Json/JsonEncoder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
         array_walk_recursive(
102 102
             $data,
103
-            function (&$value) {
103
+            function(&$value) {
104 104
                 if (is_float($value) && ctype_digit((string)$value)) {
105 105
                     // Due to PHP bug #50224, floats with no decimals are converted to integers when encoded
106 106
                     $value = '(' . self::FLOAT_CASTER . ')' . $value . '.0';
Please login to merge, or discard this patch.