12 lines
132 B
PHP
12 lines
132 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
class TextDocumentContentResult
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
public $text;
|
||
|
}
|