24 lines
526 B
PHP
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';
|
|
}
|