mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 19:07:00 +01:00
18 lines
313 B
PHP
18 lines
313 B
PHP
|
<?php
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
namespace Psalm\LanguageServer;
|
||
|
|
||
|
use Sabre\Event\EmitterInterface;
|
||
|
|
||
|
/**
|
||
|
* Must emit a "message" event with a Message object as parameter
|
||
|
* when a message comes in
|
||
|
*
|
||
|
* Must emit a "close" event when the stream closes
|
||
|
*/
|
||
|
interface ProtocolReader extends EmitterInterface
|
||
|
{
|
||
|
|
||
|
}
|