The method collect() does not exist on Yiisoft\Yii\Debug\Collector\CollectorInterface. It seems like you code against a sub-type of said class. However, the method does not exist in Yiisoft\Yii\Debug\Collector\QueueCollector. Are you sure you never get one of those?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
22
$collector->/** @scrutinizer ignore-call */
23
collect(new BeforeMiddleware(new DummyMiddleware(), new ServerRequest('GET', '/test')));
Loading history...
23
$collector->collect(new AfterMiddleware(new DummyMiddleware(), new Response(200)));
24
}
25
26
protected function getCollector(): CollectorInterface
27
{
28
return new MiddlewareCollector();
29
}
30
31
protected function checkCollectedData(CollectorInterface $collector): void