Install psalm as dev, sync scripts updates

This commit is contained in:
Clemens Schwaighofer
2023-03-09 16:27:10 +09:00
parent 6bec59e387
commit feba79a2e8
2099 changed files with 283333 additions and 32 deletions

View File

@@ -0,0 +1,36 @@
<?php
namespace LanguageServerProtocol;
class HoverClientCapabilities
{
/**
* Whether hover supports dynamic registration.
*
* @var bool|null
*/
public $dynamicRegistration;
/**
* Client supports the follow content formats if the content
* property refers to a `literal of type MarkupContent`.
* The order describes the preferred format of the client.
*
* @var string[]|null
* @see MarkupKind
*/
public $contentFormat;
/**
* @param boolean|null $dynamicRegistration
* @param string[]|null $contentFormat
*/
public function __construct(
bool $dynamicRegistration = null,
array $contentFormat = null
) {
$this->dynamicRegistration = $dynamicRegistration;
$this->contentFormat = $contentFormat;
}
}