Skip to content

Commit

Permalink
IBX-8224: Dropped BackwardCompatibleCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou committed Jun 19, 2024
1 parent 55a7349 commit 1de11bf
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/bundle/Command/SystemInfoDumpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace Ibexa\Bundle\SystemInfo\Command;

use Ibexa\Bundle\Core\Command\BackwardCompatibleCommand;
use Ibexa\Bundle\SystemInfo\SystemInfo\OutputFormatRegistry;
use Ibexa\Bundle\SystemInfo\SystemInfo\SystemInfoCollectorRegistry;
use Symfony\Component\Console\Command\Command;
Expand All @@ -16,7 +15,7 @@
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

final class SystemInfoDumpCommand extends Command implements BackwardCompatibleCommand
final class SystemInfoDumpCommand extends Command
{
private SystemInfoCollectorRegistry $systemInfoCollectorRegistry;

Expand Down Expand Up @@ -110,12 +109,4 @@ protected function execute(InputInterface $input, OutputInterface $output): int

return Command::SUCCESS;
}

/**
* @return string[]
*/
public function getDeprecatedAliases(): array
{
return ['ez-support-tools:dump-info'];
}
}

0 comments on commit 1de11bf

Please sign in to comment.