MultipleClassRouteController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A default() 0 2 1
1
<?php declare(strict_types=1);
2
3
/*
4
 * This file is part of Flight Routing.
5
 *
6
 * PHP version 8.0 and above required
7
 *
8
 * @author    Divine Niiquaye Ibok <[email protected]>
9
 * @copyright 2019 Divine Niiquaye Ibok (https://divinenii.com/)
10
 * @license   https://opensource.org/licenses/BSD-3-Clause License
11
 *
12
 * For the full copyright and license information, please view the LICENSE
13
 * file that was distributed with this source code.
14
 */
15
16
namespace Flight\Routing\Tests\Fixtures\Annotation\Route\Valid;
17
18
use Flight\Routing\Annotation\Route;
19
20
/**
21
 * @Route("/en", name="english")
22
 * @Route("/fr", name="french")
23
 */
24
class MultipleClassRouteController
25
{
26
    /**
27
     * @Route("/locale", name="_locale", methods={"GET", "HEAD"})
28
     */
29
    public function default(): void
30
    {
31
    }
32
}
33