@@ -753,12 +753,6 @@ Once the constructor is called with a valid stream resource, this class will
753753take care of the underlying stream resource.
754754You SHOULD only use its public API and SHOULD NOT interfere with the underlying
755755stream resource manually.
756- Should you need to access the underlying stream resource, you can use the public
757- ` $stream ` property like this:
758-
759- ``` php
760- var_dump(stream_get_meta_data($stream->stream));
761- ```
762756
763757The ` $bufferSize ` property controls the maximum buffer size in bytes to read
764758at once from the stream.
@@ -819,12 +813,6 @@ Once the constructor is called with a valid stream resource, this class will
819813take care of the underlying stream resource.
820814You SHOULD only use its public API and SHOULD NOT interfere with the underlying
821815stream resource manually.
822- Should you need to access the underlying stream resource, you can use the public
823- ` $stream ` property like this:
824-
825- ``` php
826- var_dump(stream_get_meta_data($stream->stream));
827- ```
828816
829817Any ` write() ` calls to this class will not be performaned instantly, but will
830818be performaned asynchronously, once the EventLoop reports the stream resource is
@@ -885,12 +873,6 @@ Once the constructor is called with a valid stream resource, this class will
885873take care of the underlying stream resource.
886874You SHOULD only use its public API and SHOULD NOT interfere with the underlying
887875stream resource manually.
888- Should you need to access the underlying stream resource, you can use the public
889- ` $stream ` property like this:
890-
891- ``` php
892- var_dump(stream_get_meta_data($stream->stream));
893- ```
894876
895877The ` $bufferSize ` property controls the maximum buffer size in bytes to read
896878at once from the stream.
0 commit comments