Skip to content

Commit 9e4f32e

Browse files
committed
pint
1 parent 9ae8cd6 commit 9e4f32e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Queue/Connection/ConnectionFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ protected static function getSslOptions(AMQPConnectionConfig $config): array
170170
'ciphers' => $config->getSslCiphers(),
171171
'security_level' => $config->getSslSecurityLevel(),
172172
], static function ($value) {
173-
return null !== $value;
173+
return $value !== null;
174174
});
175175
}
176176

src/Queue/RabbitMQQueue.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,6 @@ public function getJobClass(): string
303303

304304
/**
305305
* Gets a queue/destination, by default the queue option set on the connection.
306-
*
307-
* @param null $queue
308306
*/
309307
public function getQueue($queue = null): string
310308
{

0 commit comments

Comments
 (0)