3v4l.org

run code in 500+ PHP versions simultaneously
<?php class A { public static function withSelf(): self { return new self(); } public static function withStatic(): static { return new static(); } } class B extends A {} var_dump(A::withSelf()); // output: A var_dump(B::withSelf()); // output: A var_dump(B::withStatic()); // output: B

preferences:
48.68 ms | 775 KiB | 5 Q