Files
development/vendor/felixfbecker/language-server-protocol/src/RegularExpressionsClientCapabilities.php
2023-03-09 16:27:10 +09:00

34 lines
584 B
PHP

<?php
namespace LanguageServerProtocol;
class RegularExpressionsClientCapabilities
{
/**
* The engine's name.
*
* @var string
*/
public $engine;
/**
* The engine's version.
*
* @var string|null
*/
public $version;
/**
* @param string $engine
* @param string|null $version
*/
public function __construct(string $engine = null, string $version = null)
{
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
$this->engine = $engine;
$this->version = $version;
}
}