Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class ArgvInput extends \Symfony\Component\Console\Input\ArgvInput |
||
27 | { |
||
28 | |||
29 | /** |
||
30 | * Queries whether or not, a option value HAS been specified on command line. |
||
31 | * |
||
32 | * @param string $name The option name to be queried |
||
33 | * |
||
34 | * @return boolean TRUE if the option has been specified, else FALSE |
||
35 | */ |
||
36 | public function hasOptionSpecified($name) |
||
41 |