RouteMatcherFactory   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 7
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A create() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 *  This file is part of the Micro framework package.
7
 *
8
 *  (c) Stanislau Komar <[email protected]>
9
 *
10
 *  For the full copyright and license information, please view the LICENSE
11
 *  file that was distributed with this source code.
12
 */
13
14
namespace Micro\Plugin\Http\Business\Matcher\Route;
15
16
use Micro\Plugin\Http\Business\Matcher\Route\Matchers\MethodMatcher;
17
use Micro\Plugin\Http\Business\Matcher\Route\Matchers\UriMatcher;
18
19
/**
20
 * @author Stanislau Komar <[email protected]>
21
 */
22
class RouteMatcherFactory implements RouteMatcherFactoryInterface
23
{
24
    public function create(): RouteMatcherInterface
25
    {
26 10
        return new RouteMatcher([
27 10
            new MethodMatcher(),
28 10
            new UriMatcher(),
29 10
        ]);
30
    }
31
}
32