File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/php-http/message/src/Encoding/InflateStream.php
Back
<?php namespace AmeliaHttp\Message\Encoding; use AmeliaClue\StreamFilter as Filter; use AmeliaPsr\Http\Message\StreamInterface; /** * Stream inflate (RFC 1951). * * @author Joel Wurtz <joel.wurtz@gmail.com> */ class InflateStream extends FilteredStream { /** * @param StreamInterface $stream * @param int $level */ public function __construct(StreamInterface $stream, $level = -1) { if (!extension_loaded('zlib')) { throw new \RuntimeException('The zlib extension must be enabled to use this stream'); } parent::__construct($stream, ['window' => -15]); // @deprecated will be removed in 2.0 $this->writeFilterCallback = Filter\fun($this->writeFilter(), ['window' => -15, 'level' => $level]); } /** * {@inheritdoc} */ protected function readFilter() { return 'zlib.inflate'; } /** * {@inheritdoc} */ protected function writeFilter() { return 'zlib.deflate'; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings