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 ( f6816e...109eb3 )
by Edi
01:36
created
bundle/Form/FieldTypeHandler/Time.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * {@inheritdoc}
39 39
      *
40
-     * @return int|null
40
+     * @return DateTime
41 41
      */
42 42
     public function convertFieldValueToForm(Value $value, FieldDefinition $fieldDefinition = null)
43 43
     {
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
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function convertFieldValueFromForm($value)
43 43
     {
44
-        return new SelectionValue\Value((array) $value);
44
+        return new SelectionValue\Value((array)$value);
45 45
     }
46 46
 
47 47
     /**
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
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 
86 86
         if ($fieldDefinition->defaultValue instanceof FloatValue\Value) {
87 87
             if (!$content instanceof Content) {
88
-                $options['data'] = (float) $fieldDefinition->defaultValue->value;
88
+                $options['data'] = (float)$fieldDefinition->defaultValue->value;
89 89
             }
90 90
         }
91 91
 
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.
bundle/Form/FieldTypeHandler/Country.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
             }
92 92
         }
93 93
 
94
-        return new CountryValue((array) $country);
94
+        return new CountryValue((array)$country);
95 95
     }
96 96
 
97 97
     /**
Please login to merge, or discard this patch.
bundle/Form/DataMapper/CreateUserMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         $userCreateStruct = $data->payload;
25 25
         $contentType = $userCreateStruct->contentType;
26 26
 
27
-        $fieldDefinitionIdentifier = (string) $propertyPath;
27
+        $fieldDefinitionIdentifier = (string)$propertyPath;
28 28
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
29 29
 
30 30
         if (null === $fieldDefinition) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $userCreateStruct = $data->payload;
54 54
         $contentType = $userCreateStruct->contentType;
55 55
 
56
-        $fieldDefinitionIdentifier = (string) $propertyPath;
56
+        $fieldDefinitionIdentifier = (string)$propertyPath;
57 57
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
58 58
 
59 59
         if (null === $fieldDefinition) {
Please login to merge, or discard this patch.
bundle/Form/DataMapper/InformationCollectionMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         /** @var ContentType $contentType */
31 31
         $contentType = $data->definition;
32 32
 
33
-        $fieldDefinitionIdentifier = (string) $propertyPath;
33
+        $fieldDefinitionIdentifier = (string)$propertyPath;
34 34
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
35 35
 
36 36
         if (null === $fieldDefinition) {
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         /** @var ContentType $contentType */
69 69
         $contentType = $data->definition;
70 70
 
71
-        $fieldDefinitionIdentifier = (string) $propertyPath;
71
+        $fieldDefinitionIdentifier = (string)$propertyPath;
72 72
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
73 73
 
74 74
         if (null === $fieldDefinition) {
Please login to merge, or discard this patch.
bundle/Form/DataMapper/CreateContentMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         $contentCreateStruct = $data->payload;
25 25
         $contentType = $contentCreateStruct->contentType;
26 26
 
27
-        $fieldDefinitionIdentifier = (string) $propertyPath;
27
+        $fieldDefinitionIdentifier = (string)$propertyPath;
28 28
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
29 29
 
30 30
         if (null === $fieldDefinition) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $contentCreateStruct = $data->payload;
54 54
         $contentType = $contentCreateStruct->contentType;
55 55
 
56
-        $fieldDefinitionIdentifier = (string) $propertyPath;
56
+        $fieldDefinitionIdentifier = (string)$propertyPath;
57 57
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
58 58
 
59 59
         if (null === $fieldDefinition) {
Please login to merge, or discard this patch.
bundle/Form/DataMapper/UpdateUserMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         /** @var \eZ\Publish\API\Repository\Values\ContentType\ContentType $contentType */
28 28
         $contentType = $data->definition;
29 29
 
30
-        $fieldDefinitionIdentifier = (string) $propertyPath;
30
+        $fieldDefinitionIdentifier = (string)$propertyPath;
31 31
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
32 32
 
33 33
         if (null === $fieldDefinition) {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         /** @var \eZ\Publish\API\Repository\Values\ContentType\ContentType $contentType */
71 71
         $contentType = $data->definition;
72 72
 
73
-        $fieldDefinitionIdentifier = (string) $propertyPath;
73
+        $fieldDefinitionIdentifier = (string)$propertyPath;
74 74
         $fieldDefinition = $contentType->getFieldDefinition($fieldDefinitionIdentifier);
75 75
 
76 76
         if (null === $fieldDefinition) {
Please login to merge, or discard this patch.