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,47 @@
<?php
namespace LanguageServerProtocol;
class MarkdownClientCapabilities
{
/**
* The name of the parser.
*
* @var string
*/
public $parser;
/**
* The version of the parser.
*
* @var string|null
*/
public $version;
/**
* A list of HTML tags that the client allows / supports in
* Markdown.
*
* @since 3.17.0
*
* @var string[]|null
*/
public $allowedTags;
/**
* @param string|null $parser
* @param string|null $version
* @param string[]|null $allowedTags
*/
public function __construct(
string $parser = null,
string $version = null,
array $allowedTags = null
) {
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
$this->parser = $parser;
$this->version = $version;
$this->allowedTags = $allowedTags;
}
}