Lines Matching defs:options
19 * Register options and arguments on the given $options object
21 * @param Options $options
24 protected function setup(Options $options)
26 $options->setHelp(
33 $options->registerArgument(
39 $options->registerCommand(
44 $options->registerArgument(
51 $options->registerCommand(
56 $options->registerArgument(
63 $options->registerCommand(
68 $options->registerCommand(
78 * Arguments and options have been parsed when this is run
80 * @param Options $options
83 protected function main(Options $options)
85 $command = $options->getCmd();
86 $args = $options->getArgs();
91 echo $options->help();