Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions RabbitMq/BaseAmqp.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace OldSound\RabbitMqBundle\RabbitMq;
use PhpAmqpLib\Channel\AMQPChannel;
use PhpAmqpLib\Connection\AMQPConnection;
use PhpAmqpLib\Connection\AbstractConnection;
use PhpAmqpLib\Connection\AMQPLazyConnection;

abstract class BaseAmqp
Expand Down Expand Up @@ -39,11 +39,11 @@ abstract class BaseAmqp
);

/**
* @param AMQPConnection $conn
* @param AbstractConnection $conn
* @param AMQPChannel|null $ch
* @param null $consumerTag
*/
public function __construct(AMQPConnection $conn, AMQPChannel $ch = null, $consumerTag = null)
public function __construct(AbstractConnection $conn, AMQPChannel $ch = null, $consumerTag = null)
{
$this->conn = $conn;
$this->ch = $ch;
Expand Down