Passed
Push — master ( 33d5ac...775805 )
by Dmitriy
03:03
created

tests/Collector/AssetCollectorTest.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Debug\Tests\Collector;
6
7
use Yiisoft\Assets\AssetBundle;
8
use Yiisoft\Yii\Debug\Collector\AssetCollector;
9
use Yiisoft\Yii\Debug\Collector\CollectorInterface;
10
11
final class AssetCollectorTest extends AbstractCollectorTestCase
12
{
13
    /**
14
     * @param AssetCollector|CollectorInterface $collector
15
     */
16
    protected function collectTestData(CollectorInterface $collector): void
17
    {
18
        $collector->collect(new AssetBundle());
0 ignored issues
show
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

18
        $collector->/** @scrutinizer ignore-call */ 
19
                    collect(new AssetBundle());
Loading history...
19
    }
20
21
    protected function getCollector(): CollectorInterface
22
    {
23
        return new AssetCollector();
24
    }
25
}
26