Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1430156
TextDocumentItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
TextDocumentItem.php
View Options
<?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
Details
Attached
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)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment