1
0
Fork 0

Improve docblock

pull/136/head
Felix Becker 2016-11-06 18:45:02 +01:00
parent 6f6f6f3f45
commit 545e1fdc2d
2 changed files with 4 additions and 1 deletions

View File

@ -93,7 +93,8 @@ class Project
}
/**
* Reads a document from disk.
* Loads the document by doing a textDocument/xcontent request to the client.
* If the client does not support textDocument/xcontent, tries to read the file from the file system.
* The document is NOT added to the list of open documents, but definitions are registered.
*
* @param string $uri

View File

@ -5,6 +5,8 @@ namespace LanguageServer\Protocol;
class TextDocumentContentResult
{
/**
* The content of the text document
*
* @var string
*/
public $text;