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

24 lines
273 B
PHP

<?php
namespace LanguageServer\Protocol;
/**
* An event describing a file change.
*/
class FileEvent
{
/**
* The file's URI.
*
* @var string
*/
public $uri;
/**
* The change type.
*
* @var int
*/
public $type;
}