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

22 lines
370 B
PHP

<?php
namespace LanguageServerProtocol;
class CodeActionDisabled
{
/**
* Human readable description of why the code action is currently
* disabled.
*
* This is displayed in the code actions UI.
*
* @var string
*/
public $reason;
public function __construct(string $reason)
{
$this->reason = $reason;
}
}