Skip to content

Commit

Permalink
Merge pull request #5 from softonic/bugfix/use-right--parameters-in-t…
Browse files Browse the repository at this point in the history
…he-call-to-the-RabbitMQQueue-constructor

fix: Use the right parameter in the call to the RabbitMQQueue constructor
  • Loading branch information
mcarballar authored Dec 20, 2023
2 parents 70c1cea + a3ec5d1 commit d30c18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RabbitMQQueueWithDeclare.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class RabbitMQQueueWithDeclare extends RabbitMQQueue
{
public function __construct(AbstractConnection $connection, string $default, array $options = [])
{
parent::__construct($connection, $default, $options);
parent::__construct($connection, $default, false, $options);

$this->declareQueue($this->getQueue(), true, false, $this->getQueueArguments($this->getQueue()));

Expand Down

0 comments on commit d30c18f

Please sign in to comment.