Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431491
CompletionList.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
945 B
Referenced Files
None
Subscribers
None
CompletionList.php
View Options
<?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
Details
Attached
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)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment