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

30 lines
516 B
PHP

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