Files
development/vendor/felixfbecker/language-server-protocol/src/MarkupKind.php
2023-03-09 16:27:10 +09:00

24 lines
526 B
PHP

<?php
namespace LanguageServerProtocol;
/**
* Describes the content type that a client supports in various
* result literals like `Hover`, `ParameterInfo` or `CompletionItem`.
*
* Please note that `MarkupKinds` must not start with a `$`. This kinds
* are reserved for internal usage.
*/
abstract class MarkupKind
{
/**
* Plain text is supported as a content format
*/
const PLAINTEXT = 'plaintext';
/**
* Markdown is supported as a content format
*/
const MARKDOWN = 'markdown';
}