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,42 @@
<?php
namespace LanguageServerProtocol;
class FoldingRangeClientCapabilities
{
/**
* Whether hover supports dynamic registration.
*
* @var bool|null
*/
public $dynamicRegistration;
/**
* The maximum number of folding ranges that the client prefers to receive
* per document. The value serves as a hint, servers are free to follow the
* limit.
*
* @var int|null
*/
public $rangeLimit;
/**
* If set, the client signals that it only supports folding complete lines.
* If set, client will ignore specified `startCharacter` and `endCharacter`
* properties in a FoldingRange.
*
* @var bool|null
*/
public $lineFoldingOnly;
public function __construct(
bool $dynamicRegistration = null,
int $rangeLimit = null,
bool $lineFoldingOnly = null
) {
$this->dynamicRegistration = $dynamicRegistration;
$this->rangeLimit = $rangeLimit;
$this->lineFoldingOnly = $lineFoldingOnly;
}
}