Passed
Pull Request — master (#209)
by Dmitriy
02:57
created

ServiceCollectorTest::getCollector()   A

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 stdClass;
8
use Yiisoft\Yii\Debug\Collector\CollectorInterface;
9
use Yiisoft\Yii\Debug\Collector\ServiceCollector;
10
use Yiisoft\Yii\Debug\Tests\Shared\AbstractCollectorTestCase;
11
12
final class ServiceCollectorTest extends AbstractCollectorTestCase
13
{
14
    /**
15
     * @param CollectorInterface|ServiceCollector $collector
16
     */
17
    protected function collectTestData(CollectorInterface $collector): void
18
    {
19
        $time = microtime(true);
20
        $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. Since it exists in all sub-types, consider adding an abstract or default implementation to Yiisoft\Yii\Debug\Collector\CollectorInterface. ( 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('test', stdClass::class, 'test', [], '', 'success', null, $time, $time + 1);
Loading history...
21
    }
22
23
    protected function getCollector(): CollectorInterface
24
    {
25
        return new ServiceCollector();
26
    }
27
}
28