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

24 lines
348 B
PHP

<?php
namespace LanguageServerProtocol;
class ExecuteCommandOptions
{
/**
* The commands to be executed on the server
*
* @var string[]
*/
public $commands;
/**
* @param string[] $commands
*/
public function __construct(
array $commands
) {
$this->commands = $commands;
}
}