1 | <?php |
||
10 | final class SeldJsonLintJsonParser implements JsonParserInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var JsonParser |
||
14 | */ |
||
15 | private $parser; |
||
16 | |||
17 | public function __construct() |
||
21 | |||
22 | /** |
||
23 | * @param string $json |
||
24 | * @return array|string|float|int|bool|null |
||
25 | * @throws JsonParserException |
||
26 | */ |
||
27 | public function parse(string $json) |
||
35 | } |
||
36 |