| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | 96 | public function __construct($message, $linenumber, $columnNumber, $previous = null) |
|
| 34 | { |
||
| 35 | 96 | $message = sprintf('%s at line %d column %d of the JSON5 data', $message, $linenumber, $columnNumber); |
|
| 36 | |||
| 37 | 96 | parent::__construct($message, 0, $previous); |
|
| 38 | |||
| 39 | 96 | $this->lineNumber = $linenumber; |
|
| 40 | 96 | $this->column = $columnNumber; |
|
| 41 | 96 | } |
|
| 42 | |||
| 59 |