Completed
Push — master ( b405b6...821ce4 )
by Woody
04:35
created

ContentHandler::__invoke()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 15
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 3
Metric Value
dl 0
loc 15
ccs 8
cts 8
cp 1
rs 9.4285
cc 3
eloc 10
nc 2
nop 3
crap 3
1
<?php
2
3
namespace Equip\Handler;
4
5
use Relay\Middleware\ContentHandler as AbstractHandler;
6
7
/**
8
 * @deprecated 1.4.0 Switched to Relay.Middleware
9
 */
10
abstract class ContentHandler extends AbstractHandler
11
{
12
}
13