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.
2 parents 064186e + 7a68d07 commit 7dd789cCopy full SHA for 7dd789c
RabbitMq/BaseAmqp.php
@@ -2,7 +2,7 @@
2
3
namespace OldSound\RabbitMqBundle\RabbitMq;
4
use PhpAmqpLib\Channel\AMQPChannel;
5
-use PhpAmqpLib\Connection\AMQPConnection;
+use PhpAmqpLib\Connection\AbstractConnection;
6
use PhpAmqpLib\Connection\AMQPLazyConnection;
7
8
abstract class BaseAmqp
@@ -39,11 +39,11 @@ abstract class BaseAmqp
39
);
40
41
/**
42
- * @param AMQPConnection $conn
+ * @param AbstractConnection $conn
43
* @param AMQPChannel|null $ch
44
* @param null $consumerTag
45
*/
46
- public function __construct(AMQPConnection $conn, AMQPChannel $ch = null, $consumerTag = null)
+ public function __construct(AbstractConnection $conn, AMQPChannel $ch = null, $consumerTag = null)
47
{
48
$this->conn = $conn;
49
$this->ch = $ch;
0 commit comments