Class ConsoleInputArgument
An object to represent a single argument used in the command line. ConsoleOptionParser creates these when you use addArgument()
Package: Cake\Console
See: ConsoleOptionParser::addArgument()
Copyright: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
License: MIT License
Location: Cake/Console/ConsoleInputArgument.php
See: ConsoleOptionParser::addArgument()
Copyright: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
License: MIT License
Location: Cake/Console/ConsoleInputArgument.php
Properties summary
-
$_choices
protectedarray
An array of valid choices for this argument. -
$_help
protectedstring
Help string -
$_name
protectedstring
Name of the argument. -
$_required
protectedboolean
Is this option required?
Method Summary
-
__construct() public
Make a new Input Argument -
help() public
Generate the help for this argument. -
isRequired() public
Check if this argument is a required argument -
name() public
Get the value of the name attribute. -
usage() public
Get the usage value for this argument -
validChoice() public
Check that $value is a valid choice for this argument. -
xml() public
Append this arguments XML representation to the passed in SimpleXml object.
Method Detail
__construct() public ¶
__construct( string|array $name , string $help = '' , boolean $required = false , array $choices = array() )
Make a new Input Argument
Parameters
- string|array $name
- The long name of the option, or an array with all the properties.
- string $help optional ''
- The help text for this option
- boolean $required optional false
- Whether this argument is required. Missing required args will trigger exceptions
- array $choices optional array()
- Valid choices for this option.
help() public ¶
help( integer $width = 0 )
Generate the help for this argument.
Parameters
- integer $width optional 0
- The width to make the name of the option.
Returns
string
validChoice() public ¶
validChoice( string $value )
Check that $value is a valid choice for this argument.
Parameters
- string $value
- The choice to validate.
Returns
boolean