| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 63 | public function __construct( |
||
| 64 | string $kind, |
||
| 65 | int $start = 0, |
||
| 66 | int $end = 0, |
||
| 67 | int $line = 0, |
||
| 68 | int $column = 0, |
||
| 69 | ?Token $prev = null, |
||
| 70 | $value = null |
||
| 71 | ) { |
||
| 72 | $this->kind = $kind; |
||
| 73 | $this->start = $start; |
||
| 74 | $this->end = $end; |
||
| 75 | $this->line = $line; |
||
| 76 | $this->column = $column; |
||
| 77 | $this->prev = $prev; |
||
| 78 | $this->value = $value; |
||
| 79 | } |
||
| 178 |