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