Install psalm as dev, sync scripts updates
This commit is contained in:
24
vendor/felixfbecker/language-server-protocol/src/DocumentHighlightKind.php
vendored
Normal file
24
vendor/felixfbecker/language-server-protocol/src/DocumentHighlightKind.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace LanguageServerProtocol;
|
||||
|
||||
/**
|
||||
* A document highlight kind.
|
||||
*/
|
||||
abstract class DocumentHighlightKind
|
||||
{
|
||||
/**
|
||||
* A textual occurrence.
|
||||
*/
|
||||
const TEXT = 1;
|
||||
|
||||
/**
|
||||
* Read-access of a symbol, like reading a variable.
|
||||
*/
|
||||
const READ = 2;
|
||||
|
||||
/**
|
||||
* Write-access of a symbol, like writing to a variable.
|
||||
*/
|
||||
const WRITE = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user