<?php class Point { final public function foo(): string { return 'foo'; } } final class PointChildren extends Point { public function foo(): string { return 'children'; } } $children = new PointChildren(); $children->foo();
You have javascript disabled. You will not be able to edit any code.