Completed
Push — master ( cc37af...d88bd6 )
by Mehmet
04:33
created

Dispatcher

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 6
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Selami\Foundation;
5
6
use Selami\Router;
7
8
class Dispatcher
9
{
10
    const REDIRECT = Router::REDIRECT;
11
    const DOWNLOAD = Router::DOWNLOAD;
12
    const CUSTOM = Router::CUSTOM;
13
}
14