Passed
Pull Request — master (#36)
by Jim Well John
07:33
created
tests/TypesTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
                         'type' => Type::nonNull($types->getOutput(Post::class)),
73 73
                         'args' => [
74 74
                             'id' => Type::nonNull(Type::id()), // Use standard API when needed
75
-                            'input' => $types->getPartialInput(Post::class),  // Use automated InputObjectType for partial input for updates
75
+                            'input' => $types->getPartialInput(Post::class), // Use automated InputObjectType for partial input for updates
76 76
                         ],
77 77
                         'resolve' => function ($root, $args): void {
78 78
                             // update existing post and flush...
Please login to merge, or discard this patch.
src/Factory/Type/FilterGroupConditionTypeFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
                 $this->readCustomOperatorsFromAnnotation($metadata->reflClass);
60 60
 
61 61
                 // This will convert 'datetime' string to 'DateTime'
62
-                $fieldMappings = array_map(function($mapping){
62
+                $fieldMappings = array_map(function ($mapping) {
63 63
                     switch ($mapping['type']) {
64 64
                         case 'datetime': {
65 65
                             $mapping['type'] = 'DateTime';
Please login to merge, or discard this patch.