Passed
Push — master ( 0b86b2...26cfdb )
by Rafael
13:17
created
src/Command/MercureHubCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     protected function configure()
52 52
     {
53 53
         $this->setName('graphql:mercure:start')
54
-             ->setDescription('Start mercure HUB server. Define mercure settings using env variables with MERCURE_* prefix in your .env file')
55
-             ->addArgument('mercure', InputArgument::REQUIRED, 'Mercure binary');
54
+                ->setDescription('Start mercure HUB server. Define mercure settings using env variables with MERCURE_* prefix in your .env file')
55
+                ->addArgument('mercure', InputArgument::REQUIRED, 'Mercure binary');
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.
src/YnloGraphQLBundle.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@
 block discarded – undo
58 58
         $container->registerForAutoconfiguration(InputFieldTypeGuesser::class)->addTag('graphql.input_type_guesser');
59 59
         $container->registerForAutoconfiguration(FilterResolverInterface::class)->addTag('graphql.filter_resolver');
60 60
         $container->registerForAutoconfiguration(FilterInterface::class)
61
-                  ->addTag('graphql.list_filter')
62
-                  ->setPublic(true);
61
+                    ->addTag('graphql.list_filter')
62
+                    ->setPublic(true);
63 63
 
64 64
         $container->registerForAutoconfiguration(SubscriptionAwareInterface::class)
65
-                  ->addMethodCall('setPublisher', [new Reference(Publisher::class)]);
65
+                    ->addMethodCall('setPublisher', [new Reference(Publisher::class)]);
66 66
     }
67 67
 
68 68
     /**
Please login to merge, or discard this patch.