RouteMatcherFactory::create()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 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