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 ( 1c0be6...2fcce1 )
by Alex
05:34
created
Category
src/Serialization/Json/JsonSerializationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function formalize(Settings $settings)
30 30
     {
31
-        return function () {
31
+        return function() {
32 32
             return new TimestampFirstCombGenerator();
33 33
         };
34 34
     }
Please login to merge, or discard this patch.
src/Pipeline/OutgoingPipelineFeature.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $pipelineModifications->registerStep(
40 40
             'LoadHandlersConnector',
41 41
             LoadHandlersConnector::class,
42
-            function () use ($builder) {
42
+            function() use ($builder) {
43 43
                 return new LoadHandlersConnector(
44 44
                     $builder->build(MessageHandlerRegistry::class),
45 45
                     $builder->build(IncomingContextFactory::class)
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $pipelineModifications->registerStep(
50 50
             'InvokeHandlerTerminator',
51 51
             InvokeHandlerTerminator::class,
52
-            function () use ($builder) {
52
+            function() use ($builder) {
53 53
                 return new InvokeHandlerTerminator();
54 54
             }
55 55
         );
Please login to merge, or discard this patch.
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.