We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ae8cd6 commit 9e4f32eCopy full SHA for 9e4f32e
src/Queue/Connection/ConnectionFactory.php
@@ -170,7 +170,7 @@ protected static function getSslOptions(AMQPConnectionConfig $config): array
170
'ciphers' => $config->getSslCiphers(),
171
'security_level' => $config->getSslSecurityLevel(),
172
], static function ($value) {
173
- return null !== $value;
+ return $value !== null;
174
});
175
}
176
src/Queue/RabbitMQQueue.php
@@ -303,8 +303,6 @@ public function getJobClass(): string
303
304
/**
305
* Gets a queue/destination, by default the queue option set on the connection.
306
- *
307
- * @param null $queue
308
*/
309
public function getQueue($queue = null): string
310
{
0 commit comments