Controller::__process()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Utilities\Router;
5
6
use Utilities\Router\Interfaces\ControllerInterface;
7
8
/**
9
 * Controller class
10
 *
11
 * @link    https://github.com/utilities-php/router
12
 * @author  Shahrad Elahi (https://github.com/shahradelahi)
13
 * @license https://github.com/utilities-php/router/blob/master/LICENSE (MIT License)
14
 */
15
abstract class Controller extends AnonymousController implements ControllerInterface
16
{
17
18
    public function __process(Request $request): void
19
    {
20
        // Simply implement this method is ignored.
21
    }
22
23
}