mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 02:47:02 +01:00
da42be175f
Fixes #1880
14 lines
285 B
PHP
14 lines
285 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
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
|
|
{
|
|
}
|