aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Stream/StreamInterface.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-13 14:10:40 +0900
committernsfisis <nsfisis@gmail.com>2024-07-13 14:10:40 +0900
commitf26f497131923886889deb4b843b179518888b1f (patch)
tree10ff8467135865d4aadb6bf4d3978dd1d011ed1a /src/Stream/StreamInterface.php
parent1f4170811730477e9cd7d9620608c4ab619bdefc (diff)
downloadphp-waddiwasi-f26f497131923886889deb4b843b179518888b1f.tar.gz
php-waddiwasi-f26f497131923886889deb4b843b179518888b1f.tar.zst
php-waddiwasi-f26f497131923886889deb4b843b179518888b1f.zip
feat: add examples/hello-world
Diffstat (limited to 'src/Stream/StreamInterface.php')
-rw-r--r--src/Stream/StreamInterface.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Stream/StreamInterface.php b/src/Stream/StreamInterface.php
index 0655d22..723c38b 100644
--- a/src/Stream/StreamInterface.php
+++ b/src/Stream/StreamInterface.php
@@ -15,7 +15,7 @@ interface StreamInterface
* A binary string of $bytes bytes.
*
* @throws UnexpectedEofException
- * Thrown if the stream does not have enough bytes to read.
+ * If the stream does not have enough bytes to read.
*
* @phpstan-impure
*/
@@ -28,7 +28,7 @@ interface StreamInterface
* An 8-bit unsigned integer read from the stream.
*
* @throws UnexpectedEofException
- * Thrown if the stream have reached the end.
+ * If the stream have reached the end.
*
* @phpstan-impure
*/
@@ -41,7 +41,7 @@ interface StreamInterface
* An 8-bit unsigned integer read from the stream.
*
* @throws UnexpectedEofException
- * Thrown if the stream have reached the end.
+ * If the stream have reached the end.
*
* @phpstan-impure
*/
@@ -53,7 +53,7 @@ interface StreamInterface
* @param positive-int $bytes
*
* @throws UnexpectedEofException
- * Thrown if the stream does not have enough bytes to seek.
+ * If the stream does not have enough bytes to seek.
*
* @phpstan-impure
*/