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 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
License: License (http://www.opensource.org/licenses/mit-license.php)
Location: Cake/Console/ConsoleInputArgument.php
	
	See: ConsoleOptionParser::addArgument()
Copyright: Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
License: License (http://www.opensource.org/licenses/mit-license.php)
Location: Cake/Console/ConsoleInputArgument.php
Properties summary
- 
			
$_choicesprotectedarrayAn array of valid choices for this argument. - 
			
$_helpprotectedstringHelp string - 
			
$_nameprotectedstringName of the argument. - 
			
$_requiredprotectedbooleanIs 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( mixed $name , string $help = '' , boolean $required = false , array $choices = array() )
Make a new Input Argument
Parameters
- mixed $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
 
Returns
					boolean