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

27 lines
343 B
PHP

<?php
namespace LanguageServerProtocol;
abstract class DiagnosticSeverity
{
/**
* Reports an error.
*/
const ERROR = 1;
/**
* Reports a warning.
*/
const WARNING = 2;
/**
* Reports an information.
*/
const INFORMATION = 3;
/**
* Reports a hint.
*/
const HINT = 4;
}