Passed
Push — master ( bafd2f...fc0646 )
by Alexander
02:28
created

ValidatorCollectorTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 6
dl 0
loc 17
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getCollector() 0 3 1
A collectTestData() 0 7 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Debug\Tests\Collector;
6
7
use Yiisoft\Validator\Result;
8
use Yiisoft\Validator\Rule\Number;
9
use Yiisoft\Yii\Debug\Collector\CollectorInterface;
10
use Yiisoft\Yii\Debug\Collector\ValidatorCollector;
11
12
final class ValidatorCollectorTest extends CollectorTestCase
13
{
14
    /**
15
     * @param CollectorInterface|ValidatorCollector $collector
16
     */
17
    protected function collectTestData(CollectorInterface $collector): void
18
    {
19
        $ruleNumber = new Number(min: 200);
20
        $result = new Result();
21
        $result->addError($ruleNumber->getTooSmallMessage());
22
23
        $collector->collect(123, $result, [$ruleNumber]);
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\Collector\QueueCollector. 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

23
        $collector->/** @scrutinizer ignore-call */ 
24
                    collect(123, $result, [$ruleNumber]);
Loading history...
24
    }
25
26
    protected function getCollector(): CollectorInterface
27
    {
28
        return new ValidatorCollector();
29
    }
30
}
31