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

14 lines
179 B
PHP

<?php
namespace LanguageServer\Protocol;
class TextDocumentContentResult
{
/**
* The content of the text document
*
* @var string
*/
public $text;
}