/**
  * @inheritdoc
  */
 protected function configure()
 {
     parent::configure();
     $this->addArgument('job', InputArgument::OPTIONAL, 'Show information for only this job');
 }
Esempio n. 2
0
 /**
  * @inheritdoc
  */
 protected function configure()
 {
     parent::configure();
     $this->addArgument('job', InputArgument::OPTIONAL, 'Run only this job (if enabled)');
 }
 /**
  * @inheritdoc
  */
 protected function configure()
 {
     parent::configure();
     $this->addArgument("job", InputArgument::REQUIRED, 'Name of the job to disable');
     $this->addOption('enable', 'e', InputOption::VALUE_REQUIRED, 'Enable or disable this cron (y or n)');
 }
 /**
  * @inheritdoc
  */
 protected function configure()
 {
     parent::configure();
     $this->addArgument('job', InputArgument::OPTIONAL, 'Operate only on this job');
 }
Esempio n. 5
0
 /**
  * @inheritdoc
  */
 protected function configure()
 {
     parent::configure();
     $this->addOption('keep-deleted', 'k', InputOption::VALUE_NONE, 'If set, deleted cron jobs will not be removed');
     $this->addOption('default-disabled', 'd', InputOption::VALUE_NONE, 'If set, new jobs will be disabled by default');
 }