28 lines
451 B
PHP
28 lines
451 B
PHP
<?php
|
|
|
|
namespace LanguageServer\Protocol;
|
|
|
|
class ClientCapabilities
|
|
{
|
|
/**
|
|
* The client supports workspace/xfiles requests
|
|
*
|
|
* @var bool|null
|
|
*/
|
|
public $xfilesProvider;
|
|
|
|
/**
|
|
* The client supports textDocument/xcontent requests
|
|
*
|
|
* @var bool|null
|
|
*/
|
|
public $xcontentProvider;
|
|
|
|
/**
|
|
* The client supports xcache/* requests
|
|
*
|
|
* @var bool|null
|
|
*/
|
|
public $xcacheProvider;
|
|
}
|