PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
php-http
/
message
/
src
/
Encoding
<?php namespace Http\Message\Encoding; /** * Decorate a stream which is chunked. * * Allow to decode a chunked stream * * @author Joel Wurtz <joel.wurtz@gmail.com> */ class DechunkStream extends FilteredStream { /** * {@inheritdoc} */ protected function readFilter() { return 'dechunk'; } /** * {@inheritdoc} */ protected function writeFilter() { return 'chunk'; } }
[-] FilteredStream.php
[edit]
[-] DecompressStream.php
[edit]
[+]
..
[-] CompressStream.php
[edit]
[-] DeflateStream.php
[edit]
[-] InflateStream.php
[edit]
[+]
Filter
[-] GzipEncodeStream.php
[edit]
[-] ChunkStream.php
[edit]
[-] GzipDecodeStream.php
[edit]
[-] DechunkStream.php
[edit]