public function addOption(string
$name, string|array
$shortcut = null, int
$mode = null, string
$description = '', mixed
$default = null /* array|\Closure $suggestedValues = [] */
):
static { $suggestedValues = 6 <= \
func_num_args() ?
func_get_arg(5
) :
[];
$this->
getCommand()->
addOption($name,
$shortcut,
$mode,
$description,
$default,
$suggestedValues);
return $this;
} public function setProcessTitle(string
$title):
static { $this->
getCommand()->
setProcessTitle($title);
return $this;
} public function setHelp(string
$help):
static { $this->
getCommand()->
setHelp($help);
return $this;
}