JsonContentHandler   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 18
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A throwException() 0 4 1
1
<?php
2
3
namespace Equip\Handler;
4
5
use Equip\Exception\HttpException;
6
use Relay\Middleware\JsonContentHandler as AbstractHandler;
7
8
class JsonContentHandler extends AbstractHandler
9
{
10
    /**
11
     * @inheritDoc
12
     */
13 3
    public function __construct($assoc = true, $maxDepth = 512, $options = 0)
14
    {
15 3
        return parent::__construct($assoc, $maxDepth, $options);
0 ignored issues
show
Bug introduced by
Constructors do not have meaningful return values, anything that is returned from here is discarded. Are you sure this is correct?
Loading history...
16
    }
17
18
    /**
19
     * @inheritDoc
20
     */
21 1
    protected function throwException($message)
22
    {
23 1
        throw HttpException::badRequest($message);
24
    }
25
}
26