2016-08-22 15:32:31 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-22 20:40:16 +00:00
|
|
|
namespace LanguageServer\Protocol\Methods\CompletionItem;
|
|
|
|
|
|
|
|
use LanguageServer\Protocol\Request;
|
2016-08-22 15:32:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The request is sent from the client to the server to resolve additional
|
|
|
|
* information for a given completion item.
|
|
|
|
*/
|
2016-08-22 20:40:16 +00:00
|
|
|
class ResolveRequest extends Request
|
2016-08-22 15:32:31 +00:00
|
|
|
{
|
|
|
|
/**
|
2016-08-22 20:40:16 +00:00
|
|
|
* @var LanguageServer\Protocol\CompletionItem
|
2016-08-22 15:32:31 +00:00
|
|
|
*/
|
|
|
|
public $params;
|
|
|
|
}
|