On this page
Class ConsoleInputOption
An object to represent a single option used in the command line. ConsoleOptionParser creates these when you use addOption()
See:
Cake\Console\ConsoleOptionParser::addOption()Located at Console/ConsoleInputOption.php
Method Detail
__constructsource public
__construct( string|array $name , string $short '' , string $help '' , boolean $boolean false , string $default '' , array $choices [] )Make a new Input Option
Parameters
- 
     string|array $name
- The long name of the option, or an array with all the properties.
- 
     string $shortoptional ''
- The short alias for this option
- 
     string $helpoptional ''
- The help text for this option
- 
     boolean $booleanoptional false
- Whether this option is a boolean option. Boolean options don't consume extra tokens
- 
     string $defaultoptional ''
- The default value for this option.
- 
     array $choicesoptional []
- Valid choices for this option.
Throws
Cake\Console\Exception\ConsoleException\Cake\Console\Exception\ConsoleException
helpsource public
help( integer $width 0 )Generate the help for this this option.
Parameters
- 
     integer $widthoptional 0
- The width to make the name of the option.
Returns
stringstring
shortsource public
short( )Get the value of the short attribute.
Returns
stringValue of this->_short.
validChoicesource public
validChoice( string $value )Check that a value is a valid choice for this option.
Parameters
- 
     string $value
- The choice to validate.
Returns
booleanbool
Throws
Cake\Console\Exception\ConsoleException\Cake\Console\Exception\ConsoleException
xmlsource public
xml( SimpleXmlElement $parent )Append the option's xml into the parent.
Parameters
- 
     SimpleXmlElement $parent
- The parent element.
Returns
SimpleXmlElementThe parent with this option appended.
Properties summary
$_booleansource
protected boolean
Is the option a boolean option. Boolean options do not consume a parameter.
© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
 http://api.cakephp.org/3.1/class-Cake.Console.ConsoleInputOption.html