@@ -33,6 +33,6 @@ |
||
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 | } |
@@ -69,7 +69,7 @@ |
||
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 |
@@ -38,7 +38,7 @@ |
||
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 |
@@ -206,7 +206,7 @@ |
||
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 | } |