我正在遵循official guide来开始使用RabbitMQ,并在尝试关闭连接时遇到以下错误:
The inspection reports exceptions which are neither enclosed in a try-catch block nor documented using the '@throws' tag.
具有以下代码时:
require_once __DIR__ . '/vendor/autoload.php';
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Message\AMQPMessage;
$connection = new AMQPStreamConnection('localhost', 5672, 'guest', 'guest');
$channel = $connection->channel();
$channel->queue_declare('hello', false, false, false, false);
$msg = new AMQPMessage('Hello World!');
$channel->basic_publish($msg, '', 'hello');
echo " [x] Sent 'Hello World!'\n";
$channel->close();
$connection->close();
因此,错误发生在通道关闭后的最后一行。并且接收器也根据文档进行设置。我不确定为什么会发生此错误,也不确定如何解决。我该如何解决?
编辑1:请明确说明,我的composer.json
文件中也有require语句,因为该指南要求我这样做。我基本上是按照指南操作并收到此错误。