@@ -752,12 +752,6 @@ Once the constructor is called with a valid stream resource, this class will
752752take care of the underlying stream resource.
753753You SHOULD only use its public API and SHOULD NOT interfere with the underlying
754754stream resource manually.
755- Should you need to access the underlying stream resource, you can use the public
756- ` $stream ` property like this:
757-
758- ``` php
759- var_dump(stream_get_meta_data($stream->stream));
760- ```
761755
762756The ` $bufferSize ` property controls the maximum buffer size in bytes to read
763757at once from the stream.
@@ -818,12 +812,6 @@ Once the constructor is called with a valid stream resource, this class will
818812take care of the underlying stream resource.
819813You SHOULD only use its public API and SHOULD NOT interfere with the underlying
820814stream resource manually.
821- Should you need to access the underlying stream resource, you can use the public
822- ` $stream ` property like this:
823-
824- ``` php
825- var_dump(stream_get_meta_data($stream->stream));
826- ```
827815
828816Any ` write() ` calls to this class will not be performaned instantly, but will
829817be performaned asynchronously, once the EventLoop reports the stream resource is
@@ -884,12 +872,6 @@ Once the constructor is called with a valid stream resource, this class will
884872take care of the underlying stream resource.
885873You SHOULD only use its public API and SHOULD NOT interfere with the underlying
886874stream resource manually.
887- Should you need to access the underlying stream resource, you can use the public
888- ` $stream ` property like this:
889-
890- ``` php
891- var_dump(stream_get_meta_data($stream->stream));
892- ```
893875
894876The ` $bufferSize ` property controls the maximum buffer size in bytes to read
895877at once from the stream.
0 commit comments