Page MenuHomeWickedGov Phorge

TextDocumentItem.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

TextDocumentItem.php

<?php
declare(strict_types=1);
namespace Phan\LanguageServer\Protocol;
/**
* An item to transfer a text document from the client to the server.
*
* Source: https://github.com/felixfbecker/php-language-server/tree/master/src/Protocol/TextDocumentItem.php
* See ../../../../LICENSE.LANGUAGE_SERVER
* @phan-immutable
*/
class TextDocumentItem
{
/**
* The text document's URI.
*
* @var string
*/
public $uri;
/**
* The text document's language identifier.
*
* @var string
* @suppress PhanUnreferencedPublicProperty (Part of the protocol but Phan doesn't use it)
*/
public $languageId;
/**
* The version number of this document (it will strictly increase after each
* change, including undo/redo).
*
* @var int
* @suppress PhanUnreferencedPublicProperty (Part of the protocol but Phan doesn't use it)
*/
public $version;
/**
* The content of the opened text document.
*
* @var string
*/
public $text;
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 18:28 (6 h, 23 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
1a/d8/86d53c1084199befba3c20dd809f
Default Alt Text
TextDocumentItem.php (1 KB)

Event Timeline