<?php class A{ function __construct( protected readonly string $id ){} function dumb():string{ echo strtoupper($this->id); } } class B extends A{ function __construct( protected readonly int $id ){} }
You have javascript disabled. You will not be able to edit any code.