Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
60 | 342 | public function __construct() |
|
61 | { |
||
62 | 342 | $this->decoder = extension_loaded('simdjson') ? new SimdjsonDecoder() : new JsonDecoder(); |
|
63 | 342 | $this->pointers = new Pointers(); |
|
64 | 342 | $this->onDecodingError = fn (DecodedValue $decoded) => throw new DecodingException($decoded); |
|
65 | 342 | $this->onSyntaxError = fn (SyntaxException $e) => throw $e; |
|
66 | } |
||
79 |