Passed
Push — master ( 82bd79...a09bf3 )
by Alex
07:52
created

StaticMethodsCallsUnitTest::getRouter()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 1
c 1
b 1
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
declare(strict_types = 1);
3
namespace Mezon\Router\Tests\Standart;
4
5
use Mezon\Router\RouterInterface;
6
use Mezon\Router\Tests\Base\RouterUnitTestClass;
7
use Mezon\Router\Router;
8
use Mezon\Router\Tests\Base\StaticMethodsCallsTestClass;
9
10
/**
11
 *
12
 * @psalm-suppress PropertyNotSetInConstructor
13
 */
14
class StaticMethodsCallsUnitTest extends StaticMethodsCallsTestClass
15
{
16
17
    /**
18
     *
19
     * {@inheritdoc}
20
     * @see RouterUnitTestClass::getRouter()
21
     */
22
    protected function getRouter(): RouterInterface
23
    {
24
        return new Router();
25
    }
26
}
27