1
0
Fork 0
php-language-server/src/Protocol/TextDocumentContentResult.php

14 lines
179 B
PHP
Raw Normal View History

2016-11-06 13:47:36 +00:00
<?php
namespace LanguageServer\Protocol;
class TextDocumentContentResult
{
/**
2016-11-06 17:45:02 +00:00
* The content of the text document
*
2016-11-06 13:47:36 +00:00
* @var string
*/
public $text;
}