1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-30 04:19:23 +01:00

Fix minor phpdoc issue

This commit is contained in:
Niklas Keller 2017-06-17 17:10:23 +02:00
parent 03ea140945
commit 0071609904

View File

@ -29,7 +29,7 @@ interface InputStream {
*
* @return Promise Resolves with a string when new data is available or `null` if the stream has closed.
*
* @throws PendingReadException Thrown if another read operation is still pending.
* @throws PendingReadError Thrown if another read operation is still pending.
*/
public function read(): Promise;
}