Passed
Push — master ( 09a47c...0eabc9 )
by BENOIT
01:43
created
src/Metrics/Redis/RedisMetricsHandlerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
         $factory = new Factory($this->loop);
34 34
 
35 35
         return $factory->createClient($dsn)
36
-            ->then(fn (AsynchronousClient $client) => new RedisMetricsHandler($client));
36
+            ->then(fn(AsynchronousClient $client) => new RedisMetricsHandler($client));
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
src/Message/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
                 'event' => $this->event,
70 70
                 'retry' => $this->retry,
71 71
             ],
72
-            fn ($value) => null !== $value
72
+            fn($value) => null !== $value
73 73
         );
74 74
     }
75 75
 
Please login to merge, or discard this patch.
src/Command/ServeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $logger = $this->logger ?? new ConsoleLogger($output, [LogLevel::INFO => OutputInterface::VERBOSITY_NORMAL]);
39 39
         try {
40 40
             $config = Configuration::bootstrapFromCLI($input)->asArray();
41
-            $loop->futureTick(function () use ($config, $output) {
41
+            $loop->futureTick(function() use ($config, $output) {
42 42
                 $this->displayConfiguration($config, $output);
43 43
             });
44 44
 
Please login to merge, or discard this patch.
src/Command/GenerateJWTCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
             $value = $io->ask(
207 207
                 'TTL of this token in seconds (or hit ENTER for no expiration):',
208 208
                 null,
209
-                function ($value) {
209
+                function($value) {
210 210
                     if (null === $value) {
211 211
                         return null;
212 212
                     }
Please login to merge, or discard this patch.