Passed
Pull Request — master (#209)
by Dmitriy
28:56 queued 26:33
created

LogCollectorTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A collectTestData() 0 3 1
A getCollector() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Debug\Tests\Unit\Collector;
6
7
use Psr\Log\LogLevel;
8
use Yiisoft\Yii\Debug\Collector\CollectorInterface;
9
use Yiisoft\Yii\Debug\Collector\LogCollector;
10
use Yiisoft\Yii\Debug\Tests\Shared\AbstractCollectorTestCase;
11
12
final class LogCollectorTest extends AbstractCollectorTestCase
13
{
14
    /**
15
     * @param CollectorInterface|LogCollector $collector
16
     */
17
    protected function collectTestData(CollectorInterface $collector): void
18
    {
19
        $collector->collect(LogLevel::ALERT, 'test', ['context'], __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. 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(LogLevel::ALERT, 'test', ['context'], __FILE__ . ':' . __LINE__);
Loading history...
20
    }
21
22
    protected function getCollector(): CollectorInterface
23
    {
24
        return new LogCollector();
25
    }
26
}
27