Passed
Push — master ( bace86...bb4cad )
by Dmitriy
05:30 queued 02:57
created

tests/Unit/Collector/EventCollectorTest.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Debug\Tests\Unit\Collector;
6
7
use Yiisoft\Yii\Debug\Collector\CollectorInterface;
8
use Yiisoft\Yii\Debug\Collector\EventCollector;
9
use Yiisoft\Yii\Debug\Tests\Shared\AbstractCollectorTestCase;
10
use Yiisoft\Yii\Debug\Tests\Unit\Support\DummyEvent;
11
12
final class EventCollectorTest extends AbstractCollectorTestCase
13
{
14
    /**
15
     * @param CollectorInterface|EventCollector $collector
16
     */
17
    protected function collectTestData(CollectorInterface $collector): void
18
    {
19
        $collector->collect(new DummyEvent(), __FILE__ . ':' . __LINE__);
0 ignored issues
show
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\Collec...mmaryCollectorInterface or Yiisoft\Yii\Debug\Tests\...\Support\DummyCollector. 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

19
        $collector->/** @scrutinizer ignore-call */ 
20
                    collect(new DummyEvent(), __FILE__ . ':' . __LINE__);
Loading history...
20
    }
21
22
    protected function getCollector(): CollectorInterface
23
    {
24
        return new EventCollector();
25
    }
26
27
    protected function checkCollectedData(array $data): void
28
    {
29
        $this->assertFileExists($data[0]['file']);
30
    }
31
}
32