for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OldSound\RabbitMqBundle\RabbitMq;
use PhpAmqpLib\Connection\AbstractConnection;
class AnonConsumer extends Consumer
{
public function __construct(AbstractConnection $conn)
parent::__construct($conn);
$this->setQueueOptions([
'name' => '',
'passive' => false,
'durable' => false,
'exclusive' => true,
'auto_delete' => true,
'nowait' => false,
'arguments' => null,
'ticket' => null,
]);
}