<?php class SomeParent { public function foo(): static { return $this; } } final class SomeChild extends SomeParent { public function foo(): SomeChild { return $this; } } var_dump((new SomeChild())->foo());
You have javascript disabled. You will not be able to edit any code.