Completed
Push — master ( 30af4a...256b3e )
by Łukasz
18:25 queued 05:11
created

ChainRouter::generate()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
nc 2
nop 3
dl 0
loc 9
rs 9.9666
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
5
 * @license For full copyright and license information view LICENSE file distributed with this source code.
6
 */
7
declare(strict_types=1);
8
9
namespace eZ\Publish\Core\MVC\Symfony\Routing;
10
11
use Symfony\Cmf\Component\Routing\ChainRouter as BaseChainRouter;
12
13
class ChainRouter extends BaseChainRouter
14
{
15
}
16