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

27 lines
493 B
PHP
Raw Normal View History

2016-08-22 15:32:31 +00:00
<?php
namespace LanguageServer\Protocol\TextDocument;
use LanguageServer\Protocol\RequestParams;
/*
* A parameter literal used in requests to pass a text document and a position inside
* that document.
*/
class TextDocumentPositionParams extends RequestParams
{
/**
* The text document.
*
* @var TextDocumentIdentifier
*/
public $textDocument;
/**
* The position inside the text document.
*
* @var Position
*/
public $position;
}