1 | <?php |
||
11 | 3 | class JsonContentHandler extends AbstractHandler |
|
12 | { |
||
13 | 3 | /** |
|
14 | * @inheritDoc |
||
15 | */ |
||
16 | public function __construct($assoc = true, $maxDepth = 512, $options = 0) |
||
17 | { |
||
18 | return parent::__construct($assoc, $maxDepth, $options); |
||
19 | 2 | } |
|
20 | |||
21 | 2 | /** |
|
22 | * @inheritDoc |
||
23 | 2 | */ |
|
24 | 1 | protected function isApplicableMimeType($mime) |
|
28 | 1 | ||
29 | /** |
||
30 | * @inheritDoc |
||
31 | */ |
||
32 | protected function throwException($message) |
||
36 | } |
||
37 |