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

31 lines
545 B
PHP

<?php
namespace LanguageServerProtocol;
/**
* The log message notification is sent from the server to the client to ask the client to log a particular message.
*/
class LogMessage
{
/**
* The message type. See {@link MessageType}
*
* @var int
* @see MessageType
*/
public $type;
/**
* The actual message
*
* @var string
*/
public $message;
public function __construct(int $type, string $message)
{
$this->type = $type;
$this->message = $message;
}
}