Install psalm as dev, sync scripts updates
This commit is contained in:
20
vendor/felixfbecker/language-server-protocol/src/ExecuteCommandClientCapabilities.php
vendored
Normal file
20
vendor/felixfbecker/language-server-protocol/src/ExecuteCommandClientCapabilities.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace LanguageServerProtocol;
|
||||
|
||||
class ExecuteCommandClientCapabilities
|
||||
{
|
||||
|
||||
/**
|
||||
* Execute command supports dynamic registration.
|
||||
*
|
||||
* @var bool|null
|
||||
*/
|
||||
public $dynamicRegistration;
|
||||
|
||||
public function __construct(
|
||||
bool $dynamicRegistration = null
|
||||
) {
|
||||
$this->dynamicRegistration = $dynamicRegistration;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user