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

17 lines
328 B
PHP
Raw Normal View History

2016-08-22 20:40:16 +00:00
<?php
namespace LanguageServer\Protocol\Methods\TextDocument;
use LanguageServer\Protocol\Request;
/**
* The code lens request is sent from the client to the server to compute code lenses for a given text document.
*/
class CodeLensRequest extends Request
{
/**
* @var CodeLensParams
*/
public $params;
}