| Total Complexity | 2 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 18 | class ZvalU2 |
||
| 19 | { |
||
| 20 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 21 | public int $next; |
||
| 22 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 23 | public int $opline_num; |
||
| 24 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 25 | public int $lineno; |
||
| 26 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 27 | public int $num_args; |
||
| 28 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 29 | public int $fe_pos; |
||
| 30 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 31 | public int $fe_iter_idx; |
||
| 32 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 33 | public int $access_flags; |
||
| 34 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 35 | public int $property_guard; |
||
| 36 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 37 | public int $constant_flags; |
||
| 38 | /** @psalm-suppress PropertyNotSetInConstructor */ |
||
| 39 | public int $extra; |
||
| 40 | |||
| 41 | public function __construct( |
||
| 42 | private CData $cdata |
||
| 43 | ) { |
||
| 44 | unset($this->next); |
||
| 45 | unset($this->opline_num); |
||
| 46 | unset($this->lineno); |
||
| 47 | unset($this->num_args); |
||
| 48 | unset($this->fe_pos); |
||
| 49 | unset($this->fe_iter_idx); |
||
| 50 | unset($this->access_flags); |
||
| 51 | unset($this->property_guard); |
||
| 52 | unset($this->constant_flags); |
||
| 53 | unset($this->extra); |
||
| 54 | } |
||
| 55 | |||
| 56 | public function __get(string $field_name): mixed |
||
| 59 | } |
||
| 60 | } |
||
| 61 |