1
0
Fork 0
php-language-server/src/Protocol/Methods/TextDocument/DidChangeParams.php

27 lines
569 B
PHP
Raw Normal View History

2016-08-22 15:32:31 +00:00
<?php
namespace LanguageServer\Protocol\TextDocument;
/**
* The log message notification is sent from the server to the client to ask the
* client to log a particular message.
*/
class DidChangeParams
{
/**
* The document that did change. The version number points
* to the version after all provided content changes have
* been applied.
*
* @var VersionedTextDocumentIdentifier
*/
public $textDocument;
/**
* The actual content changes.
*
* @var ContentChangeEvent[]
*/
public $contentChanges;
}