Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
application
/
third_party
/
omnipay
/
vendor
/
php-http
/
message
/
src
/
Encoding
✏️
Editing: DechunkStream.php
<?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'; } }
💾 Save Changes
❌ Cancel