Lines Matching full:options
7 use splitbrain\phpcli\Options; alias
21 * Register options and arguments on the given $options object
23 * @param Options $options
26 protected function setup(Options $options) argument
28 $options->setHelp(
35 $options->registerArgument(
41 $options->registerCommand(
46 $options->registerArgument(
53 $options->registerCommand(
58 $options->registerArgument(
65 $options->registerCommand(
70 $options->registerCommand(
80 * Arguments and options have been parsed when this is run
82 * @param Options $options
85 protected function main(Options $options) argument
87 $command = $options->getCmd();
88 $args = $options->getArgs();
93 echo $options->help();