gh8461-001.inc 142 B

1234567891011121314
  1. <?php
  2. $x = 0;
  3. class UniqueList
  4. {
  5. const A = 1;
  6. public static function foo()
  7. {
  8. global $x;
  9. $x += self::A;
  10. }
  11. }