Passed
Push — master ( 99f62c...22c5d8 )
by Alex
07:13
created

SimpleRouter::callRoute()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 16
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 10
c 1
b 0
f 1
dl 0
loc 16
rs 9.9332
cc 4
nc 4
nop 1
1
<?php
2
declare(strict_types = 1);
3
namespace Mezon\Router;
4
5
/**
6
 * Class SimpleRouter
7
 *
8
 * @package Router
9
 * @author Dodonov A.A.
10
 * @version v.1.0 (2021/09/27)
11
 * @copyright Copyright (c) 2021, http://aeon.su
12
 */
13
14
/**
15
 * Simple router class
16
 */
17
class SimpleRouter extends RouterBase implements RouterInterface
18
{
19
20
    use SimpleRoutesSet, SimpleUrlParser;
21
}
22