Skip to content

Commit

Permalink
IBX-8224: Dropped BackwardCompatibleCommand (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou committed Jun 27, 2024
1 parent 0d4ea3b commit 55a93ee
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/bundle/Command/CronRunCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@
use Cron\Executor\Executor;
use Cron\Report\CronReport;
use Cron\Resolver\ArrayResolver;
use Ibexa\Bundle\Core\Command\BackwardCompatibleCommand;
use Ibexa\Bundle\Cron\Registry\CronJobsRegistry;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

final class CronRunCommand extends Command implements BackwardCompatibleCommand
final class CronRunCommand extends Command
{
/** @var \Ibexa\Bundle\Cron\Registry\CronJobsRegistry */
private $cronJobsRegistry;
Expand Down Expand Up @@ -100,12 +99,4 @@ private function logReportsOutput(CronReport $reports): void
}
}
}

/**
* @return string[]
*/
public function getDeprecatedAliases(): array
{
return ['ezplatform:cron:run'];
}
}

0 comments on commit 55a93ee

Please sign in to comment.