<?php class A { private static int $a = 1; public static function test() { var_dump(static::$a); } } class B extends A { private static int $a = 2; } B::test();
You have javascript disabled. You will not be able to edit any code.