<?php interface FooInterface { public function bar(): FooInterface; } class Foo implements FooInterface { public function bar(): static { return $this; } } class Qux extends Foo { public function bar(): FooInterface { return $this; } }
You have javascript disabled. You will not be able to edit any code.