21 lines
366 B
PHP
21 lines
366 B
PHP
<?php
|
|
|
|
namespace LanguageServerProtocol;
|
|
|
|
class ExecuteCommandClientCapabilities
|
|
{
|
|
|
|
/**
|
|
* Execute command supports dynamic registration.
|
|
*
|
|
* @var bool|null
|
|
*/
|
|
public $dynamicRegistration;
|
|
|
|
public function __construct(
|
|
bool $dynamicRegistration = null
|
|
) {
|
|
$this->dynamicRegistration = $dynamicRegistration;
|
|
}
|
|
}
|