We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 161db26 + 92599c4 commit 9b15558Copy full SHA for 9b15558
CHANGELOG.md
@@ -4,6 +4,7 @@ CHANGELOG
4
### 0.3.2 (2013-xx-xx)
5
6
* Feature: [Dns] Support default port for IPv6 addresses (@clue)
7
+ * Bug fix: [Stream] Make sure CompositeStream is closed properly
8
9
### 0.3.1 (2013-04-21)
10
src/React/Stream/CompositeStream.php
@@ -76,7 +76,7 @@ public function end($data = null)
76
77
public function close()
78
{
79
- $this->pipeSource = true;
+ $this->pipeSource = null;
80
81
$this->readable->close();
82
$this->writable->close();
0 commit comments