for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\Message\Encoding;
use Psr\Http\Message\StreamInterface;
/**
* Stream deflate (RFC 1951).
*
* @author Joel Wurtz <[email protected]>
*/
class DeflateStream extends FilteredStream
{
* @param StreamInterface $stream
* @param int $level
public function __construct(StreamInterface $stream, $level = -1)
parent::__construct($stream, ['window' => -15, 'level' => $level], ['window' => -15]);
}
* {@inheritdoc}
protected function readFilter()
return 'zlib.deflate';
protected function writeFilter()
return 'zlib.inflate';