Passed
Push — master ( 4cfdc5...37c7d0 )
by Alex
07:00
created

RouterUnitTest::testRequestMethodsConcurrency()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 32
Code Lines 26

Duplication

Lines 0
Ratio 0 %

Importance

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