<?php abstract class Command { protected function configure() {} } abstract class TypedCommand { protected function configure(): void {} } class MyCommand extends Command { protected function configure(): void {} } class MyTypedCommand extends TypedCommand { protected function configure(): void {} }
You have javascript disabled. You will not be able to edit any code.