Skip to content

Commit

Permalink
fix GZipCompressedStringWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Sep 9, 2021
1 parent c6707ea commit 60b5bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IO/Writer/GZipCompressedStringWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class GZipCompressedStringWriter extends StringWriter
{
public function getStringData(): string
{
return gzencode(parent::getStringData(), ZLIB_ENCODING_DEFLATE);
return gzencode(parent::getStringData());
}
}

0 comments on commit 60b5bc6

Please sign in to comment.