1
0
Fork 0
php-language-server/src/Protocol/CompletionList.php

26 lines
452 B
PHP
Raw Normal View History

2016-08-22 15:32:31 +00:00
<?php
namespace LanguageServer\Protocol\TextDocument;
/**
* Represents a collection of [completion items](#CompletionItem) to be presented in
* the editor.
*/
class CompletionList
{
/**
* This list it not complete. Further typing should result in recomputing this
* list.
*
* @var bool
*/
public $isIncomplete;
/**
* The completion items.
*
* @var CompletionItem[]
*/
public $items;
}