Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | interface CompletionAwareInterface |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * Return possible values for the named option |
||
12 | * |
||
13 | * @param string $optionName |
||
14 | * @param CompletionContext $context |
||
15 | * @return array |
||
16 | */ |
||
17 | public function completeOptionValues($optionName, CompletionContext $context); |
||
18 | |||
19 | /** |
||
20 | * Return possible values for the named argument |
||
21 | * |
||
22 | * @param string $argumentName |
||
23 | * @param CompletionContext $context |
||
24 | * @return array |
||
25 | */ |
||
26 | public function completeArgumentValues($argumentName, CompletionContext $context); |
||
27 | } |
||
28 |