JsonContentHandler::throwException()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 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