class InputArgument
Represents a command line argument.
Constants
| REQUIRED | |
| OPTIONAL | |
| IS_ARRAY |
Methods
| __construct(string $name, int $mode = null, string $description = '', mixed $default = null) Constructor. | ||
| string | getName() Returns the argument name. | |
| bool | isRequired() Returns true if the argument is required. | |
| bool | isArray() Returns true if the argument can take multiple values. | |
| setDefault(mixed $default = null) Sets the default value. | ||
| mixed | getDefault() Returns the default value. | |
| string | getDescription() Returns the description text. |
Details
__construct(string $name, int $mode = null, string $description = '', mixed $default = null)
Constructor.
string getName()
Returns the argument name.
bool isRequired()
Returns true if the argument is required.
bool isArray()
Returns true if the argument can take multiple values.
setDefault(mixed $default = null)
Sets the default value.
mixed getDefault()
Returns the default value.
string getDescription()
Returns the description text.
Please login to continue.