Install psalm as dev, sync scripts updates
This commit is contained in:
30
vendor/felixfbecker/language-server-protocol/src/LogMessage.php
vendored
Normal file
30
vendor/felixfbecker/language-server-protocol/src/LogMessage.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user