The method PhpAmqpLib\Connection\Ab...Connection::getSocket() has been deprecated with message: No direct access to communication socket should be available.
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be
removed from the class and what other method or class to use instead.
Loading history...
19
}
20
21
/**
22
* {@inheritdoc}
23
*/
24
public function channel($channel_id = null)
25
{
26
$this->connect();
27
28
return parent::channel($channel_id);
29
}
30
31
/**
32
* @return null|\PhpAmqpLib\Wire\IO\AbstractIO
33
*/
34
public function getIO()
35
{
36
if (empty($this->io)) {
37
$this->connect();
38
}
39
40
return $this->io;
41
}
42
43
/**
44
* Should the connection be attempted during construction?
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.