<?php class Foo { static function bar() : self { return new static(); } } class Qux extends Foo { /* At runtime this is here: static function bar() : self { return new static(); } */ } var_dump(Foo::bar(), Qux::bar());
You have javascript disabled. You will not be able to edit any code.