The class PhpAmqpLib\Connection\AMQPSSLConnection has been deprecated: Use AMQPConnectionFactory with AMQPConnectionConfig::setIsSecure(true) and AMQPConnectionConfig::setSsl* methods.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
7
class AMQPSSLConnection extends /** @scrutinizer ignore-deprecated */ BaseAMQPSSLConnection
Loading history...
8
{
9
public $constructParams;
10
11
public static $createConnectionParams;
12
13
public function __construct()
14
{
15
// save params for direct access in tests
16
$this->constructParams = func_get_args();
17
}
18
19
public static function create_connection($hosts, $options = [])