Skip to content

Commit c41098b

Browse files
mihaileugithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent 0b07505 commit c41098b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RabbitMq/AMQPConnectionFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function __construct(
5555
}
5656

5757
if (is_array($this->parameters['ssl_context'])) {
58-
$this->parameters['context'] = ! empty($this->parameters['ssl_context'])
58+
$this->parameters['context'] = !empty($this->parameters['ssl_context'])
5959
? stream_context_create(['ssl' => $this->parameters['ssl_context']])
6060
: null;
6161
}

RabbitMq/RpcClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function addRequest($msgBody, $server, $requestId = null, $routingKey = '
4343
? 'amq.rabbitmq.reply-to' // On direct reply-to mode, use predefined queue name
4444
: $this->getQueueName(),
4545
'delivery_mode' => 1, // non durable
46-
'expiration' => $expiration*1000,
46+
'expiration' => $expiration * 1000,
4747
'correlation_id' => $requestId, ]);
4848

4949
$this->getChannel()->basic_publish($msg, $server, $routingKey);

0 commit comments

Comments
 (0)