Lines Matching refs:help
77 * @param string $help
79 public function setHelp($help) argument
81 $this->setup['']['help'] = $help;
87 * @param string $help
89 public function setCommandHelp($help) argument
91 $this->setup['']['commandhelp'] = $help;
110 * @param string $help help text
115 public function registerArgument($arg, $help, $required = true, $command = '') argument
123 'help' => $help,
134 * @param string $help
137 public function registerCommand($command, $help) argument
146 'help' => $help
155 * @param string $help help text for this option
161 public function registerOption($long, $help, $short = null, $needsarg = false, $command = '') argument
169 'help' => $help,
363 public function help() function in splitbrain\\phpcli\\Options