<?php class A { public const FOO = 72; } final class B extends A { function test(): void { echo self::FOO; } } new B()->test();
You have javascript disabled. You will not be able to edit any code.