EventCollectorTest::getCollector()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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\Collector\TimelineCollector;
10
use Yiisoft\Yii\Debug\Tests\Shared\AbstractCollectorTestCase;
11
use Yiisoft\Yii\Debug\Tests\Unit\Support\DummyEvent;
12
13
final class EventCollectorTest extends AbstractCollectorTestCase
14
{
15
    /**
16
     * @param CollectorInterface|EventCollector $collector
17
     */
18
    protected function collectTestData(CollectorInterface $collector): void
19
    {
20
        $collector->collect(new DummyEvent(), __FILE__ . ':' . __LINE__);
0 ignored issues
show
Bug introduced by
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

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