| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function __construct( |
||
| 58 | string $message, |
||
| 59 | ?array $nodes = null, |
||
| 60 | ?Source $source = null, |
||
| 61 | ?array $positions = null, |
||
| 62 | ?array $path = null, |
||
| 63 | ?array $extensions = null |
||
| 64 | ) { |
||
| 65 | parent::__construct($message); |
||
| 66 | |||
| 67 | $this->nodes = $nodes; |
||
| 68 | $this->source = $source; |
||
| 69 | $this->positions = $positions; |
||
| 70 | $this->path = $path; |
||
| 71 | $this->extensions = $extensions; |
||
| 72 | } |
||
| 76 |