$_maxArgs
$_maxArgs : integer
The maximum number of arguments shown when generating usage.
HelpFormatter formats help for console shells. Can format to either text or XML formats. Uses ConsoleOptionParser methods to generate help.
Generally not directly used. Using $parser->help($command, 'xml'); is usually
how you would access help. Or via the --help=xml
option on the command line.
Xml output is useful for integration with other tools like IDE's or other build tools.
$_parser : \Cake\Console\ConsoleOptionParser
Option parser.
__construct(\Cake\Console\ConsoleOptionParser $parser)
Build the help formatter for an OptionParser
\Cake\Console\ConsoleOptionParser | $parser | The option parser help is being generated for. |
Loading…