Completed
Push — master ( 8e197a...53f998 )
by Gabriel
02:44
created

anonymous//src/ServerMiddleware/Dispatcher.php$0   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 3
dl 0
loc 29
ccs 0
cts 9
cp 0
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Nip\Http\ServerMiddleware;
4
5
use Middleland\Dispatcher as MiddlelandDispatcher;
6
7
/**
8
 * Class Dispatcher
9
 * @package Nip\Http\ServerMiddleware
10
 *
11
 * @based on https://github.com/oscarotero/middleland/blob/master/src/Dispatcher.php
12
 */
13
class Dispatcher extends MiddlelandDispatcher implements DispatcherInterface
14
{
15
}
16