Remove search option, can be changed in json easily or with --value
This commit is contained in:
bovenliggende
45426c7c14
commit
d55a615654
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Laden…
Verwijs in nieuw issue
Block a user