| 1 | <?php |
||
| 5 | class CompletionResult implements CompletionResultInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string[] |
||
| 9 | */ |
||
| 10 | private $values; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | private $descriptive; |
||
| 16 | |||
| 17 | public function __construct( |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return bool |
||
| 27 | */ |
||
| 28 | public function isDescriptive() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string[] |
||
| 35 | */ |
||
| 36 | public function getValues() |
||
| 40 | } |
||
| 41 |