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

25 lines
409 B
PHP
Raw Normal View History

2016-08-22 15:32:31 +00:00
<?php
2016-08-22 20:40:16 +00:00
namespace LanguageServer\Protocol;
2016-08-22 15:32:31 +00:00
/**
* Completion options.
*/
class CompletionOptions
{
/*
* The server provides support to resolve additional information for a completion
* item.
*
* @var bool
*/
public $resolveProvider;
/**
* The characters that trigger completion automatically.
*
* @var string|null
*/
public $triggerCharacters;
}