Remove search option, can be changed in json easily or with --value

This commit is contained in:
Stéphane Goetz 2020-02-07 22:15:38 +01:00
parent 45426c7c14
commit d55a615654
2 changed files with 1 additions and 11 deletions

View File

@ -91,11 +91,6 @@ class ConfigBuilder
return $this;
}
public function withSearch($value): ConfigBuilder {
$this->config['html']['search'] = $value;
return $this;
}
public function withConfluenceDelete($value): ConfigBuilder {
$this->config['confluence']['delete'] = $value;
return $this;

View File

@ -26,8 +26,7 @@ class Generate extends DauxCommand
// Confluence format only
->addOption('delete', null, InputOption::VALUE_NONE, 'Delete pages not linked to a documentation page (confluence)')
->addOption('destination', 'd', InputOption::VALUE_REQUIRED, $description, 'static')
->addOption('search', null, InputOption::VALUE_NONE, 'Generate full text search');
->addOption('destination', 'd', InputOption::VALUE_REQUIRED, $description, 'static');
}
protected function prepareConfig($mode, InputInterface $input, OutputInterface $output): ConfigBuilder
@ -43,10 +42,6 @@ class Generate extends DauxCommand
$builder->withConfluenceDelete(true);
}
if ($input->hasOption('search')) {
$builder->withSearch($input->getOption('search'));
}
return $builder;
}