| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | 11 | public function __construct( |
|
| 29 | bool $convertToAssociativeArray = true, |
||
| 30 | int $depth = 512, |
||
| 31 | int $options = JSON_THROW_ON_ERROR | JSON_INVALID_UTF8_IGNORE |
||
| 32 | ) { |
||
| 33 | 11 | $this->convertToAssociativeArray = $convertToAssociativeArray; |
|
| 34 | 11 | $this->depth = $depth; |
|
| 35 | 11 | $this->options = $options; |
|
| 36 | 11 | } |
|
| 57 |