22 lines
522 B
PHP
22 lines
522 B
PHP
<?php
|
|
|
|
namespace LanguageServerProtocol;
|
|
|
|
class DidChangeWatchedFilesClientCapabilities
|
|
{
|
|
/**
|
|
* Did change watched files notification supports dynamic registration.
|
|
* Please note that the current protocol doesn't support static
|
|
* configuration for file changes from the server side.
|
|
*
|
|
* @var bool|null
|
|
*/
|
|
public $dynamicRegistration;
|
|
|
|
public function __construct(
|
|
bool $dynamicRegistration = null
|
|
) {
|
|
$this->dynamicRegistration = $dynamicRegistration;
|
|
}
|
|
}
|