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 — update-rabbitmq-management-api... ( ffbc5c...0ab9bc )
by Alex
05:09
created
Category
src/Outbox/OutboxFeature.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $this->enableByDefault();
28 28
         $this->registerPrerequisite(
29
-            function (Settings $settings) {
29
+            function(Settings $settings) {
30 30
                 return !$settings->tryGet(KnownSettingsEnum::SEND_ONLY);
31 31
             },
32 32
             "Endpoint is configured as send only."
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         $pipelineModifications->registerStep(
56 56
             'OutboxConnector',
57 57
             OutboxConnector::class,
58
-            function () use ($builder) {
58
+            function() use ($builder) {
59 59
                 /** @var PipelineFactory $pipelineFactory */
60 60
                 $pipelineFactory = $builder->build(PipelineFactory::class);
61 61
                 return new OutboxConnector(
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.
src/Serialization/Json/JsonSerializationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function formalize(Settings $settings)
32 32
     {
33
-        return function () {
33
+        return function() {
34 34
             return new JsonMessageSerializer(new JsonSerializer(new ObjectNormalizer(), new JsonEncoder()));
35 35
         };
36 36
     }
Please login to merge, or discard this patch.
src/Serialization/Json/ObjectNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
         $className = get_class($object);
92 92
         $normalizedObject = [$this->classAnnotation => $className];
93 93
         if ($className === 'DateTime') {
94
-            $normalizedObject += (array) $object;
94
+            $normalizedObject += (array)$object;
95 95
         } else {
96 96
             $normalizedObject += array_map([$this, 'normalizeValue'], $this->extractObjectProperties($object));
97 97
         }
Please login to merge, or discard this patch.