1
0
Fork 0
php-language-server/src/Protocol/FileChangeType.php

25 lines
320 B
PHP
Raw Normal View History

2016-08-22 15:32:31 +00:00
<?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;
}