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.
Test Failed
Pull Request — master (#11)
by
unknown
07:26
created
src/JsonQueryWrapper/DataTypeMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@
 block discarded – undo
59 59
 
60 60
         // Map integers
61 61
         if (preg_match('/^(\d+)$/', $value, $matches)) {
62
-            return (int) $matches[1];
62
+            return (int)$matches[1];
63 63
         }
64 64
 
65 65
         // Map floats
66 66
         if (preg_match('/^(\d+\.\d+)$/', $value, $matches)) {
67
-            return (float) $matches[1];
67
+            return (float)$matches[1];
68 68
         }
69 69
 
70 70
         // Map strings
Please login to merge, or discard this patch.