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

33 lines
625 B
PHP
Raw Normal View History

2016-08-22 20:40:16 +00:00
<?php
namespace LanguageServer\Protocol\TextDocument;
use LanguageServer\Protocol\Params;
/**
* Params for the CodeActionRequest
*/
class CodeActionParams extends Params
{
/**
* The document in which the command was invoked.
*
* @var LanguageServer\Protocol\TextDocumentIdentifier
*/
public $textDocument;
/**
* The range for which the command was invoked.
*
* @var LanguageServer\Protocol\Range
*/
public $range;
/**
* Context carrying additional information.
*
* @var LanguageServer\Protocol\CodeActionContext
*/
public $context;
}