14 lines
167 B
PHP
14 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
class TextDocumentIdentifier
|
||
|
{
|
||
|
/**
|
||
|
* The text document's URI.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
public $uri;
|
||
|
}
|