new InputOption('--no-interaction', '-n', InputOption::VALUE_NONE, 'Do not ask any interactive question'
),
]);
} /**
* Gets the default commands that should always be available.
*
* @return Command[]
*/
protected function getDefaultCommands(): array
{ return [new HelpCommand(),
new ListCommand(),
new CompleteCommand(),
new DumpCompletionCommand()];
} /**
* Gets the default helper set with the helpers that should always be available.
*/
protected function getDefaultHelperSet(): HelperSet
{ return new HelperSet([ new FormatterHelper(),
new DebugFormatterHelper(),
new ProcessHelper(),