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

30 lines
516 B
PHP
Raw Normal View History

2016-08-22 20:40:16 +00:00
<?php
namespace LanguageServer\Protocol\TextDocument;
use LanguageServer\Protocol\Params;
class RangeFormattingParams extends Params
{
/**
* The document to format.
*
* @var LanguageServer\Protocol\TextDocumentIdentifier
*/
public $textDocument;
/**
* The range to format
*
* @var LanguageServer\Protocol\Range
*/
public $range;
/**
* The format options
*
* @var LanguageServer\Protocol\FormattingOptions
*/
public $options;
}