1
0
Fork 0
php-language-server/src/TextDocumentManager.php

22 lines
494 B
PHP
Raw Normal View History

2016-08-23 09:21:37 +00:00
<?php
namespace LanguageServer;
/**
* Provides method handlers for all textDocument/* methods
*/
class TextDocumentManager
{
/**
* The document symbol request is sent from the client to the server to list all symbols found in a given text
* document.
*
* @param LanguageServer\Protocol\Methods\TextDocument\DocumentSymbolParams $params
* @return SymbolInformation[]
*/
public function documentSymbol(DocumentSymbolParams $params): array
{
}
}