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

20 lines
347 B
PHP

<?php
namespace LanguageServerProtocol;
class MessageActionItem
{
/**
* A short title like 'Retry', 'Open Log' etc.
*
* @var string
*/
public $title;
public function __construct(string $title = null)
{
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
$this->title = $title;
}
}