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