1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-30 04:19:23 +01:00

Fix conflicts in Parser

This commit is contained in:
Aaron Piotrowski 2017-05-04 16:30:13 -05:00
parent bf90335bb6
commit f3536494e9

View File

@ -8,8 +8,6 @@ use Amp\Promise;
use Amp\Success;
class Parser implements OutputStream {
const CHUNK_SIZE = 8192;
/** @var \Generator */
private $generator;
@ -55,7 +53,7 @@ class Parser implements OutputStream {
* @return string
*/
public function cancel(): string {
$this->generator = null;
$this->close();
return $this->buffer;
}
@ -143,6 +141,6 @@ class Parser implements OutputStream {
* @inheritdoc
*/
public function close() {
$this->dispose();
$this->generator = null;
}
}