1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/src/Psalm/Internal/LanguageServer/ProtocolReader.php

14 lines
285 B
PHP
Raw Normal View History

<?php
declare(strict_types = 1);
2018-11-06 03:57:36 +01:00
namespace Psalm\Internal\LanguageServer;
/**
* 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
{
}