| 1 | <?php  | 
            ||
| 11 | class CompletionResult implements CompletionResultInterface  | 
            ||
| 12 | { | 
            ||
| 13 | /**  | 
            ||
| 14 | * @var string[]  | 
            ||
| 15 | */  | 
            ||
| 16 | private $values;  | 
            ||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * @var bool  | 
            ||
| 20 | */  | 
            ||
| 21 | private $descriptive;  | 
            ||
| 22 | |||
| 23 | public function __construct(  | 
            ||
| 30 | |||
| 31 | /**  | 
            ||
| 32 | * @return bool  | 
            ||
| 33 | */  | 
            ||
| 34 | public function isDescriptive()  | 
            ||
| 38 | |||
| 39 | /**  | 
            ||
| 40 | * @return string[]  | 
            ||
| 41 | */  | 
            ||
| 42 | public function getValues()  | 
            ||
| 46 | }  | 
            ||
| 47 |