Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431592
TextDocumentSyncKind.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
889 B
Referenced Files
None
Subscribers
None
TextDocumentSyncKind.php
View Options
<?php
declare
(
strict_types
=
1
);
namespace
Phan\LanguageServer\Protocol
;
/**
* Defines how the host (editor) should sync document changes to the language server.
*
* Source: https://github.com/felixfbecker/php-language-server/tree/master/src/Protocol/TextDocumentSyncKind.php
* See ../../../../LICENSE.LANGUAGE_SERVER
*/
abstract
class
TextDocumentSyncKind
{
/**
* Documents should not be synced at all.
* @suppress PhanUnreferencedPublicClassConstant (unused)
*/
public
const
NONE
=
0
;
/**
* Documents are synced by always sending the full content of the document.
*/
public
const
FULL
=
1
;
/**
* Documents are synced by sending the full content on open. After that only
* incremental updates to the document are sent.
* @suppress PhanUnreferencedPublicClassConstant (unused)
*/
public
const
INCREMENTAL
=
2
;
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:50 (1 d, 5 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
02/85/96e5266317d0bd9b91c3b0868b8c
Default Alt Text
TextDocumentSyncKind.php (889 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment