Files
development/vendor/felixfbecker/language-server-protocol/src/DidChangeWatchedFilesClientCapabilities.php
2023-03-09 16:27:10 +09:00

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;
}
}