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 ( c6d14d...151517 )
by Edi
01:42
created
bundle/Form/FieldTypeHandler/Time.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * {@inheritdoc}
19 19
      *
20
-     * @return int|null
20
+     * @return DateTime
21 21
      */
22 22
     public function convertFieldValueToForm(Value $value, ?FieldDefinition $fieldDefinition = null)
23 23
     {
Please login to merge, or discard this patch.
bundle/Form/FieldTypeHandler/IntegerHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function convertFieldValueToForm(Value $value, ?FieldDefinition $fieldDefinition = null)
38 38
     {
39
-        return (int) $value->value;
39
+        return (int)$value->value;
40 40
     }
41 41
 
42 42
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
         if ($fieldDefinition->defaultValue instanceof IntegerValue\Value) {
68 68
             if (!$content instanceof Content) {
69
-                $options['data'] = (int) $fieldDefinition->defaultValue->value;
69
+                $options['data'] = (int)$fieldDefinition->defaultValue->value;
70 70
             }
71 71
         }
72 72
 
Please login to merge, or discard this patch.