gh8591-005.inc 165 B

123456789101112
  1. <?php
  2. class AbstractModel
  3. {
  4. protected static int $field = 1;
  5. final protected function cast()
  6. {
  7. global $x;
  8. $x = static::$field;
  9. }
  10. }