Page MenuHomeWickedGov Phorge

CompletionList.php
No OneTemporary

Size
945 B
Referenced Files
None
Subscribers
None

CompletionList.php

<?php
declare(strict_types=1);
namespace Phan\LanguageServer\Protocol;
/**
* Represents a collection of completion items to be presented in
* the editor.
* @phan-file-suppress PhanWriteOnlyPublicProperty these are sent to the language client
* @phan-immutable
*/
class CompletionList
{
/**
* This list is not complete. Continuing to type should result in recomputing this
* list.
*
* @var bool
*/
public $isIncomplete;
/**
* The completion items.
*
* @var CompletionItem[]
*/
public $items;
/**
* @param CompletionItem[] $items The completion items.
* @param bool $isIncomplete This list is not complete. Continuing to type should result in recomputing this list.
*/
public function __construct(array $items = [], bool $isIncomplete = false)
{
$this->items = $items;
$this->isIncomplete = $isIncomplete;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 20:37 (1 d, 5 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
36/1b/6a82838b5d1db889bff5065f06cc
Default Alt Text
CompletionList.php (945 B)

Event Timeline