ServiceCollectorTest   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getCollector() 0 3 1
A collectTestData() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Debug\Tests\Unit\Collector;
6
7
use stdClass;
8
use Yiisoft\Yii\Debug\Collector\CollectorInterface;
9
use Yiisoft\Yii\Debug\Collector\ServiceCollector;
10
use Yiisoft\Yii\Debug\Collector\TimelineCollector;
11
use Yiisoft\Yii\Debug\Tests\Shared\AbstractCollectorTestCase;
12
13
final class ServiceCollectorTest extends AbstractCollectorTestCase
14
{
15
    /**
16
     * @param CollectorInterface|ServiceCollector $collector
17
     */
18
    protected function collectTestData(CollectorInterface $collector): void
19
    {
20
        $time = microtime(true);
21
        $collector->collect('test', stdClass::class, 'test', [], '', 'success', null, $time, $time + 1);
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

21
        $collector->/** @scrutinizer ignore-call */ 
22
                    collect('test', stdClass::class, 'test', [], '', 'success', null, $time, $time + 1);
Loading history...
22
    }
23
24
    protected function getCollector(): CollectorInterface
25
    {
26
        return new ServiceCollector(new TimelineCollector());
27
    }
28
}
29