<?php class TheParent { public static function build(): TheParent { return new static(); } } class Child extends TheParent {} $child = Child::build(); $parent = TheParent::build(); echo get_class($child), "\n"; echo get_class($parent), "\n";
You have javascript disabled. You will not be able to edit any code.