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 ( 0681d7...5c78ad )
by Edi
01:55
created
bundle/Form/FieldTypeHandler/IntegerHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function convertFieldValueToForm(Value $value, ?FieldDefinition $fieldDefinition = null): int
30 30
     {
31
-        return (int) $value->value;
31
+        return (int)$value->value;
32 32
     }
33 33
 
34 34
     public function convertFieldValueFromForm($data): IntegerValue\Value
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $options = $this->getDefaultFieldOptions($fieldDefinition, $languageCode, $content);
50 50
 
51 51
         if (!$content instanceof Content && $fieldDefinition->defaultValue instanceof IntegerValue\Value) {
52
-            $options['data'] = (int) $fieldDefinition->defaultValue->value;
52
+            $options['data'] = (int)$fieldDefinition->defaultValue->value;
53 53
         }
54 54
 
55 55
         if (!empty($fieldDefinition->getValidatorConfiguration()['IntegerValueValidator'])) {
Please login to merge, or discard this patch.
bundle/Form/FieldTypeHandler/FloatHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         }
69 69
 
70 70
         if (!$content instanceof Content && $fieldDefinition->defaultValue instanceof FloatValue\Value) {
71
-            $options['data'] = (float) $fieldDefinition->defaultValue->value;
71
+            $options['data'] = (float)$fieldDefinition->defaultValue->value;
72 72
         }
73 73
 
74 74
         $formBuilder->add($fieldDefinition->identifier, NumberType::class, $options);
Please login to merge, or discard this patch.
bundle/Form/FieldTypeHandler/Selection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     public function convertFieldValueFromForm($value): SelectionValue\Value
18 18
     {
19
-        return new SelectionValue\Value((array) $value);
19
+        return new SelectionValue\Value((array)$value);
20 20
     }
21 21
 
22 22
     public function convertFieldValueToForm(Value $value, ?FieldDefinition $fieldDefinition = null)
Please login to merge, or discard this patch.