@@ -13,7 +13,7 @@ |
||
13 | 13 | /** @phpstan-ignore-next-line */ |
14 | 14 | $client->get('foo')->then( |
15 | 15 | null, |
16 | - function (\Exception $e) use ($loop, $logger) { |
|
16 | + function(\Exception $e) use ($loop, $logger) { |
|
17 | 17 | $logger->error(\sprintf('Redis error: %s', $e->getMessage())); |
18 | 18 | $loop->stop(); |
19 | 19 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $this->subscriber->subscribe($topicSelector); |
47 | 47 | $this->subscriber->on( |
48 | 48 | 'message', |
49 | - function (string $topic, string $payload) use ($topicSelector, $callback) { |
|
49 | + function(string $topic, string $payload) use ($topicSelector, $callback) { |
|
50 | 50 | $this->dispatch($topic, $payload, $topicSelector, $callback); |
51 | 51 | } |
52 | 52 | ); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $this->subscriber->psubscribe($channel); |
75 | 75 | $this->subscriber->on( |
76 | 76 | 'pmessage', |
77 | - function (string $pattern, string $topic, string $payload) use ($topicSelector, $callback) { |
|
77 | + function(string $pattern, string $topic, string $payload) use ($topicSelector, $callback) { |
|
78 | 78 | $this->dispatch($topic, $payload, $topicSelector, $callback); |
79 | 79 | } |
80 | 80 | ); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | |
29 | 29 | public function subscribe(string $subscribedTopic, callable $callback): PromiseInterface |
30 | 30 | { |
31 | - $this->emitter->on('message', function (string $topic, Message $message) use ($callback, $subscribedTopic) { |
|
31 | + $this->emitter->on('message', function(string $topic, Message $message) use ($callback, $subscribedTopic) { |
|
32 | 32 | if (!TopicMatcher::matchesTopicSelectors($topic, [$subscribedTopic])) { |
33 | 33 | return; |
34 | 34 | } |
@@ -43,13 +43,13 @@ |
||
43 | 43 | /** @phpstan-ignore-next-line */ |
44 | 44 | return $this->client->keys('users:*') |
45 | 45 | ->then( |
46 | - function (array $keys) { |
|
46 | + function(array $keys) { |
|
47 | 47 | $promises = []; |
48 | 48 | foreach ($keys as $key) { |
49 | 49 | $promises[] = $this->client->get($key); /** @phpstan-ignore-line */ |
50 | 50 | } |
51 | 51 | |
52 | - return all($promises)->then(fn (array $results): int => \array_sum($results)); |
|
52 | + return all($promises)->then(fn(array $results): int => \array_sum($results)); |
|
53 | 53 | } |
54 | 54 | ); |
55 | 55 | } |
@@ -63,7 +63,7 @@ |
||
63 | 63 | $url = $url->withQuery($qs); |
64 | 64 | $nbSubscribers = (int) $input->getOption('subscribers'); |
65 | 65 | |
66 | - $requests = function (HttpClientInterface $client, string $url) use ($nbSubscribers) { |
|
66 | + $requests = function(HttpClientInterface $client, string $url) use ($nbSubscribers) { |
|
67 | 67 | for ($i = 0; $i < $nbSubscribers; $i++) { |
68 | 68 | yield $client->request('GET', $url); |
69 | 69 | } |
@@ -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 | } |
@@ -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 | } |
@@ -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 |
@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | $promises = [ |
37 | 37 | 'async' => $factory->createClient($dsn) |
38 | 38 | ->then( |
39 | - function (AsynchronousClient $client) { |
|
39 | + function(AsynchronousClient $client) { |
|
40 | 40 | $client->on( |
41 | 41 | 'close', |
42 | - function () { |
|
42 | + function() { |
|
43 | 43 | $this->logger->error('Connection closed.'); |
44 | 44 | $this->loop->stop(); |
45 | 45 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | return $client; |
49 | 49 | }, |
50 | - function (\Exception $exception) { |
|
50 | + function(\Exception $exception) { |
|
51 | 51 | $this->loop->stop(); |
52 | 52 | $this->logger->error($exception->getMessage()); |
53 | 53 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | return all($promises) |
59 | 59 | ->then( |
60 | - function (iterable $results): array { |
|
60 | + function(iterable $results): array { |
|
61 | 61 | $clients = []; |
62 | 62 | foreach ($results as $key => $client) { |
63 | 63 | $clients[$key] = $client; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | } |
71 | 71 | ) |
72 | 72 | ->then( |
73 | - fn (array $clients): RedisStorage => new RedisStorage( |
|
73 | + fn(array $clients): RedisStorage => new RedisStorage( |
|
74 | 74 | $clients['async'], |
75 | 75 | $clients['sync'], |
76 | 76 | ) |