17 lines
254 B
PHP
17 lines
254 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
/**
|
||
|
* Signature help options.
|
||
|
*/
|
||
|
class SignatureHelpOptions
|
||
|
{
|
||
|
/**
|
||
|
* The characters that trigger signature help automatically.
|
||
|
*
|
||
|
* @var string[]|null
|
||
|
*/
|
||
|
public $triggerCharacters;
|
||
|
}
|