1
0
Fork 0
php-language-server/src/Protocol/Methods/Window/ShowMessageNotification.php

18 lines
374 B
PHP
Raw Normal View History

2016-08-22 20:40:16 +00:00
<?php
namespace LanguageServer\Protocol\Methods\Windows;
use LanguageServer\Protocol\Notification;
/**
* The show message notification is sent from a server to a client to ask the client to display a particular message in
* the user interface.
*/
class ShowMessageNotification extends Notification
{
/**
* @var ShowMessageParams
*/
public $params;
}