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

23 lines
400 B
PHP

<?php
namespace LanguageServer\Protocol\TextDocument;
use LanguageServer\Protocol\Params;
class FormattingParams extends Params
{
/**
* The document to format.
*
* @var LanguageServer\Protocol\TextDocumentIdentifier
*/
public $textDocument;
/**
* The format options.
*
* @var LanguageServer\Protocol\FormattingOptions
*/
public $options;
}