2016-08-25 13:27:14 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace LanguageServer;
|
|
|
|
|
2016-10-31 10:47:21 +00:00
|
|
|
use Sabre\Event\EmitterInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Must emit a "message" event with a Protocol\Message object as parameter
|
|
|
|
* when a message comes in
|
|
|
|
*/
|
|
|
|
interface ProtocolReader extends EmitterInterface
|
2016-08-25 13:27:14 +00:00
|
|
|
{
|
2016-10-31 10:47:21 +00:00
|
|
|
|
2016-08-25 13:27:14 +00:00
|
|
|
}
|