@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function getBindingsByExchange(ExchangeDeclaration $exchange): array |
37 | 37 | { |
38 | - return array_filter($this->bindings, function ($binding) use ($exchange) { |
|
38 | + return array_filter($this->bindings, function($binding) use ($exchange) { |
|
39 | 39 | return $binding->exchange === $exchange->name || ($binding->destinationIsExchange && $binding->destination === $exchange->name); |
40 | 40 | }); |
41 | 41 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public function declure() { |
40 | 40 | foreach ($this->queues as $name => $options) { |
41 | - list($queueName, ,) = $this->getChannel()->queue_declare($name, $options['passive'], |
|
41 | + list($queueName,,) = $this->getChannel()->queue_declare($name, $options['passive'], |
|
42 | 42 | $options['durable'], $options['exclusive'], |
43 | 43 | $options['auto_delete'], $options['nowait'], |
44 | 44 | $options['arguments'], $options['ticket']); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $consumer = new Consumer($consumerDef->name); |
27 | 27 | $consumer->setChannel($connection->channel()); |
28 | 28 | |
29 | - foreach([] as $d) { |
|
29 | + foreach ([] as $d) { |
|
30 | 30 | $consumer->consumeQueue(); |
31 | 31 | } |
32 | 32 |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | public function declareForExchange(ExchangeDeclaration $exchange, DeclarationsRegistry $declarationsRegistry) |
107 | 107 | { |
108 | 108 | $bindings = $declarationsRegistry->getBindingsByExchange($exchange); |
109 | - $queues = array_filter($bindings, function ($binding) use($exchange) { |
|
109 | + $queues = array_filter($bindings, function($binding) use($exchange) { |
|
110 | 110 | false === $binding->destinationIsExchange && $binding->destination == $exchange->name; |
111 | 111 | }); |
112 | 112 | |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | |
118 | 118 | public function declareForQueueDeclaration(string $queueName, DeclarationsRegistry $declarationsRegistry) |
119 | 119 | { |
120 | - $consumerQueues = array_filter($declarationsRegistry->queues, function ($queue) use ($queueName) { |
|
120 | + $consumerQueues = array_filter($declarationsRegistry->queues, function($queue) use ($queueName) { |
|
121 | 121 | return $queue->name === $queueName; |
122 | 122 | // TODO not found! exception? |
123 | 123 | }); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | $bindings = []; |
127 | 127 | $exchanges = []; |
128 | 128 | foreach ($consumerQueues as $queue) { |
129 | - $b = array_filter($declarationsRegistry->bindings, function ($binding) use ($queue) { |
|
129 | + $b = array_filter($declarationsRegistry->bindings, function($binding) use ($queue) { |
|
130 | 130 | return !$binding->destinationIsExchange && $binding->destination === $queue->name; |
131 | 131 | }); |
132 | 132 | $bindings = array_merge($bindings, $b); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | } |
139 | 139 | } |
140 | 140 | |
141 | - $exchanges = array_map(fn ($exchange) => $declarationsRegistry->exchanges[$exchange], array_unique($exchanges)); |
|
141 | + $exchanges = array_map(fn($exchange) => $declarationsRegistry->exchanges[$exchange], array_unique($exchanges)); |
|
142 | 142 | $this->declareExchanges($exchanges); |
143 | 143 | $this->declareQueues($consumerQueues); |
144 | 144 | $this->declareBindings($bindings); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | |
147 | 147 | public function declareForQueue(QueueDeclaration $queue) |
148 | 148 | { |
149 | - $exchanges = array_map(function ($binding) { |
|
149 | + $exchanges = array_map(function($binding) { |
|
150 | 150 | return $binding->exchange; |
151 | 151 | }, $queue->bindings); |
152 | 152 |