Page MenuHomeWickedGov Phorge

TextDocumentSyncKind.php
No OneTemporary

Size
889 B
Referenced Files
None
Subscribers
None

TextDocumentSyncKind.php

<?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

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)

Event Timeline