Slide 26
Slide 26 text
Psy\bin()
を深掘り (1/2)
$input = new ArgvInput();
$input->bind(new InputDefinition(\array_merge(Configuration::getInputOptions(), [
new InputOption('help', 'h', InputOption::VALUE_NONE),
new InputOption('version', 'V', InputOption::VALUE_NONE),
new InputOption('self-update', 'u', InputOption::VALUE_NONE),
new InputArgument('include', InputArgument::IS_ARRAY),
])));
symfony/console
を使ってコマンドラインオプションをパース
26