1 | <?php |
||
12 | class DeflateStream extends FilteredStream |
||
13 | { |
||
14 | /** |
||
15 | * @param StreamInterface $stream |
||
16 | * @param int $level |
||
17 | */ |
||
18 | 4 | public function __construct(StreamInterface $stream, $level = -1) |
|
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | 4 | protected function readFilter() |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 4 | protected function writeFilter() |
|
38 | } |
||
39 |