| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | final class RawInt32 implements Dereferencable |
||
| 22 | { |
||
| 23 | public int $value; |
||
| 24 | |||
| 25 | /** @param CastedCData<CInteger> $casted_cdata */ |
||
| 26 | public function __construct( |
||
| 27 | private CastedCData $casted_cdata, |
||
| 28 | ) { |
||
| 29 | $this->value = $this->casted_cdata->casted->cdata; |
||
| 30 | } |
||
| 31 | |||
| 32 | public static function getCTypeName(): string |
||
| 35 | } |
||
| 36 | |||
| 37 | public static function fromCastedCData( |
||
| 45 |