Slide 20
Slide 20 text
1 protected function configure(): void
2 $this
3 ->addOption(
4 name: 'config-file',
5 shortcut: ['c'],
6 mode: InputOption::VALUE_REQUIRED,
7 description: 'The path to the project\'s build.yaml file',
8 default: 'build.yaml',
9 )
10 ->addOption(
11 name: 'output-dir',
12 shortcut: ['o'],
13 mode: InputOption::VALUE_REQUIRED,
14 description: 'The directory to create files in',
15 default: '.',
16 );
17 }
@opdavies