2016-08-22 15:32:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace LanguageServer\Protocol;
|
|
|
|
|
2016-08-25 13:27:14 +00:00
|
|
|
class ClientCapabilities
|
2016-08-22 15:32:31 +00:00
|
|
|
{
|
2016-11-14 09:25:44 +00:00
|
|
|
/**
|
|
|
|
* The client supports workspace/xfiles requests
|
|
|
|
*
|
|
|
|
* @var bool|null
|
|
|
|
*/
|
|
|
|
public $xfilesProvider;
|
2016-08-22 15:32:31 +00:00
|
|
|
|
2016-11-14 09:25:44 +00:00
|
|
|
/**
|
|
|
|
* The client supports textDocument/xcontent requests
|
|
|
|
*
|
|
|
|
* @var bool|null
|
|
|
|
*/
|
|
|
|
public $xcontentProvider;
|
2017-02-03 23:20:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The client supports xcache/* requests
|
|
|
|
*
|
|
|
|
* @var bool|null
|
|
|
|
*/
|
|
|
|
public $xcacheProvider;
|
2016-08-22 15:32:31 +00:00
|
|
|
}
|