X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FCron%2FDebugCommand.php;fp=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FCron%2FDebugCommand.php;h=0000000000000000000000000000000000000000;hp=df06c099a1ecfe9a6efb2181e5a9450648e427c0;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/drupal/console/src/Command/Cron/DebugCommand.php b/vendor/drupal/console/src/Command/Cron/DebugCommand.php deleted file mode 100644 index df06c099a..000000000 --- a/vendor/drupal/console/src/Command/Cron/DebugCommand.php +++ /dev/null @@ -1,64 +0,0 @@ -moduleHandler = $moduleHandler; - parent::__construct(); - } - - /** - * {@inheritdoc} - */ - protected function configure() - { - $this - ->setName('cron:debug') - ->setDescription($this->trans('commands.cron.debug.description')); - } - - /** - * {@inheritdoc} - */ - protected function execute(InputInterface $input, OutputInterface $output) - { - $io = new DrupalStyle($input, $output); - - $io->section( - $this->trans('commands.cron.debug.messages.module-list') - ); - - $io->table( - [ $this->trans('commands.cron.debug.messages.module') ], - $this->moduleHandler->getImplementations('cron'), - 'compact' - ); - } -}