You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed an issue in ResourceOutputStream when writing large data chunks and the $chunkSize provided to the constructor was null.
ResourceInputStream closes the readable side of the stream with stream_socket_shutdown (or closes the stream with fclose for read-only streams) when the close method is invoked. The GC was relied upon for this behavior before, but was inconsistent.
ResourceOutputStream now closes the writable side of the stream with stream_socket_shutdown (or closes the stream with fclose for write-only streams) when the close method is invoked. The GC was relied upon for this behavior before, but was inconsistent.