![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/php-amqplib/php-amqplib/PhpAmqpLib/Connection/ |
<?php namespace PhpAmqpLib\Connection; class AMQPLazyConnection extends AMQPStreamConnection { /** * {@inheritdoc} */ public function channel($channel_id = null) { $this->connect(); return parent::channel($channel_id); } /** * @return null|\PhpAmqpLib\Wire\IO\AbstractIO */ public function getIO() { if (empty($this->io)) { $this->connect(); } return $this->io; } /** * Should the connection be attempted during construction? * * @return bool */ public function connectOnConstruct() { return false; } /** * @param string[][] $hosts * @param string[] $options * @return self * @throws \Exception * @deprecated Use ConnectionFactory */ public static function create_connection($hosts, $options = array()) { if (count($hosts) > 1) { throw new \RuntimeException('Lazy connection does not support multiple hosts'); } return parent::create_connection($hosts, $options); } }