Install psalm as dev, sync scripts updates
This commit is contained in:
23
vendor/felixfbecker/language-server-protocol/src/MarkupKind.php
vendored
Normal file
23
vendor/felixfbecker/language-server-protocol/src/MarkupKind.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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';
|
||||
}
|
||||
Reference in New Issue
Block a user