<?php class A { function TestSelf(): self { return new self(); } function TestStatic(): self { return new static(); } function ShowType(){ printf("%s\n", get_class($this)); } } class B extends A { function More() {} } (new B)->TestSelf()->ShowType(); (new B)->TestStatic()->ShowType();
You have javascript disabled. You will not be able to edit any code.