Skip to content

Commit

Permalink
Merge pull request #396 from wridgers/fix/anon-consumers-not-working-…
Browse files Browse the repository at this point in the history
…with-lazy-connections

AnonConsumers don't work with lazy connections
  • Loading branch information
skafandri authored Oct 19, 2016
2 parents 82ee45b + 4f7f076 commit 2b34ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RabbitMq/AnonConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace OldSound\RabbitMqBundle\RabbitMq;

use OldSound\RabbitMqBundle\RabbitMq\Consumer;
use PhpAmqpLib\Connection\AMQPConnection;
use PhpAmqpLib\Connection\AbstractConnection;

class AnonConsumer extends Consumer
{
public function __construct(AMQPConnection $conn)
public function __construct(AbstractConnection $conn)
{
parent::__construct($conn);

Expand Down

0 comments on commit 2b34ed0

Please sign in to comment.