Lines Matching defs:options
18 * Register options and arguments on the given $options object
20 * @param Options $options
23 protected function setup(Options $options)
25 $options->setHelp('Excecutes Plugin command line tools');
26 $options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', false);
32 * Arguments and options have been parsed when this is run
34 * @param Options $options
37 protected function main(Options $options)
40 $argv = $options->getArgs();
50 echo $options->help();