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

28 lines
537 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
/**
* The kind of a completion entry.
*/
abstract class CompletionItemKind {
const TEXT = 1;
const METHOD = 2;
2016-08-22 20:40:16 +00:00
const FUNCTION = 3;
2016-08-22 15:32:31 +00:00
const CONSTRUCTOR = 4;
const FIELD = 5;
const VARIABLE = 6;
const _CLASS = 7;
2016-08-22 20:40:16 +00:00
const INTERFACE = 8;
2016-08-22 15:32:31 +00:00
const MODULE = 9;
const PROPERTY = 10;
const UNIT = 11;
const VALUE = 12;
const ENUM = 13;
const KEYWORD = 14;
const SNIPPET = 15;
const COLOR = 16;
const FILE = 17;
const REFERENCE = 18;
}