Completed
Push — master ( 154d71...28fcd1 )
by Rafael
04:22
created
src/YnloGraphQLBundle.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@
 block discarded – undo
55 55
         $container->registerForAutoconfiguration(InputFieldTypeGuesser::class)->addTag('graphql.input_type_guesser');
56 56
         $container->registerForAutoconfiguration(FilterResolverInterface::class)->addTag('graphql.filter_resolver');
57 57
         $container->registerForAutoconfiguration(FilterInterface::class)
58
-                  ->addTag('graphql.list_filter')
59
-                  ->setPublic(true);
58
+                    ->addTag('graphql.list_filter')
59
+                    ->setPublic(true);
60 60
     }
61 61
 
62 62
     /**
Please login to merge, or discard this patch.
src/Type/QueryType.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -78,11 +78,11 @@
 block discarded – undo
78 78
             $eventDispatcher = $this->container->get(EventDispatcherInterface::class);
79 79
 
80 80
             $context = ContextBuilder::create($this->endpoint)
81
-                                     ->setRoot($root)
82
-                                     ->setDefinition($query)
83
-                                     ->setResolveInfo($resolveInfo)
84
-                                     ->setMetas($context->getMetas())
85
-                                     ->build();
81
+                                        ->setRoot($root)
82
+                                        ->setDefinition($query)
83
+                                        ->setResolveInfo($resolveInfo)
84
+                                        ->setMetas($context->getMetas())
85
+                                        ->build();
86 86
 
87 87
             $event = new GraphQLFieldEvent($context);
88 88
             $eventDispatcher->dispatch(GraphQLEvents::PRE_READ_FIELD, $event);
Please login to merge, or discard this patch.