I got an ERROR use Tail. Here is my code:
Tail::add('ConsoleNotice', $notice);
I trace this error and find out when close connections it produce an error. Here is the close connections code: code
public function close()
{
if (isset($this->AMQPConnection))
$this->AMQPConnection->close();
if (isset($this->channel))
$this->channel->close();
}
Same ISSUE see php-amqplib/php-amqplib#116