| 1 | <?php |
||
| 32 | class ArgvInput extends \Symfony\Component\Console\Input\ArgvInput |
||
| 33 | { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Queries whether or not, a option value HAS been specified on command line. |
||
| 37 | * |
||
| 38 | * @param string $name The option name to be queried |
||
| 39 | * |
||
| 40 | * @return boolean TRUE if the option has been specified, else FALSE |
||
| 41 | */ |
||
| 42 | public function hasOptionSpecified($name) |
||
| 46 | } |
||
| 47 |