1 | <?php |
||
7 | class InspectableArgvInput extends ArgvInput |
||
8 | { |
||
9 | /** |
||
10 | * Returns true if the argument value is set. |
||
11 | * |
||
12 | * @param string $name The argument name |
||
13 | * |
||
14 | * @return bool true if the argument is set (not a default value) |
||
15 | */ |
||
16 | 1 | public function hasArgumentSet($name) |
|
20 | |||
21 | /** |
||
22 | * Returns true if the option value is set. |
||
23 | * |
||
24 | * @param string $name The option name |
||
25 | * |
||
26 | * @return bool true if the option is set (not a default value) |
||
27 | */ |
||
28 | 1 | public function hasOptionSet($name) |
|
32 | } |
||
33 |