Failed Conditions
Push — master ( 0ef5da...6c8847 )
by Adrien
11:04 queued 07:56
created
src/Api/Enum/PhpEnumType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  */
13 13
 final class PhpEnumType extends \GraphQL\Type\Definition\PhpEnumType
14 14
 {
15
-    protected function extractDescription(ReflectionClassConstant|ReflectionClass $reflection): ?string
15
+    protected function extractDescription(ReflectionClassConstant | ReflectionClass $reflection): ?string
16 16
     {
17 17
         if ($reflection instanceof ReflectionClassConstant) {
18 18
             $value = $reflection->getValue();
Please login to merge, or discard this patch.
src/DBAL/Types/EnumType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         return $sql;
26 26
     }
27 27
 
28
-    public function convertToPHPValue(mixed $value, AbstractPlatform $platform): null|string|BackedEnum
28
+    public function convertToPHPValue(mixed $value, AbstractPlatform $platform): null | string | BackedEnum
29 29
     {
30 30
         if ($value === null || '' === $value) {
31 31
             return null;
Please login to merge, or discard this patch.