- Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
<?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 {}
}