25 lines
320 B
PHP
25 lines
320 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
/**
|
||
|
* The file event type. Enum
|
||
|
*/
|
||
|
abstract class FileChangeType
|
||
|
{
|
||
|
/**
|
||
|
* The file got created.
|
||
|
*/
|
||
|
const CREATED = 1;
|
||
|
|
||
|
/**
|
||
|
* The file got changed.
|
||
|
*/
|
||
|
const CHANGED = 2;
|
||
|
|
||
|
/**
|
||
|
* The file got deleted.
|
||
|
*/
|
||
|
const DELETED = 3;
|
||
|
}
|