http/http.php [41:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public const FLUSH_NONE = 0;
    public const FLUSH_SYNC = 1048576;
    public const FLUSH_FULL = 2097152;

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * HttpDeflateStream class constructor
     * @link https://php.net/manual/en/function.httpdeflatestream-construct.php
     * @param int $flags [optional] <p>
     * initialization flags
     * </p>
     */
    public function __construct($flags = null) {}

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * Update deflate stream
     * @link https://php.net/manual/en/function.httpdeflatestream-update.php
     * @param string $data <p>
     * data to deflate
     * </p>
     * @return string|false deflated data on success or false on failure.
     */
    public function update($data) {}

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * Flush deflate stream
     * @link https://php.net/manual/en/function.httpdeflatestream-flush.php
     * @param string $data [optional] <p>
     * more data to deflate
     * </p>
     * @return string|false some deflated data as string on success or false on failure.
     */
    public function flush($data = null) {}

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * Finalize deflate stream
     * @link https://php.net/manual/en/function.httpdeflatestream-finish.php
     * @param string $data [optional] <p>
     * data to deflate
     * </p>
     * @return string the final part of deflated data.
     */
    public function finish($data = null) {}

    /**
     * (PECL pecl_http &gt;= 1.4.0)<br/>
     * HttpDeflateStream class factory
     * @link https://php.net/manual/en/function.httpdeflatestream-factory.php
     * @param int $flags [optional] <p>
     * initialization flags
     * </p>
     * @param string $class_name [optional] <p>
     * name of a subclass of HttpDeflateStream
     * </p>
     * @return HttpDeflateStream
     */
    public static function factory($flags = null, $class_name = null) {}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



http/http.php [108:167]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public const FLUSH_NONE = 0;
    public const FLUSH_SYNC = 1048576;
    public const FLUSH_FULL = 2097152;

    /**
     * (PECL pecl_http &gt;= 1.0.0)<br/>
     * HttpInflateStream class constructor
     * @link https://php.net/manual/en/function.httpinflatestream-construct.php
     * @param int $flags [optional] <p>
     * initialization flags
     * </p>
     */
    public function __construct($flags = null) {}

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * Update inflate stream
     * @link https://php.net/manual/en/function.httpinflatestream-update.php
     * @param string $data <p>
     * data to inflate
     * </p>
     * @return string|false inflated data on success or false on failure.
     */
    public function update($data) {}

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * Flush inflate stream
     * @link https://php.net/manual/en/function.httpinflatestream-flush.php
     * @param string $data [optional] <p>
     * more data to inflate
     * </p>
     * @return string|false some inflated data as string on success or false on failure.
     */
    public function flush($data = null) {}

    /**
     * (PECL pecl_http &gt;= 0.21.0)<br/>
     * Finalize inflate stream
     * @link https://php.net/manual/en/function.httpinflatestream-finish.php
     * @param string $data [optional] <p>
     * data to inflate
     * </p>
     * @return string the final part of inflated data.
     */
    public function finish($data = null) {}

    /**
     * (PECL pecl_http &gt;= 1.4.0)<br/>
     * HttpInflateStream class factory
     * @link https://php.net/manual/en/function.httpinflatestream-factory.php
     * @param int $flags [optional] <p>
     * initialization flags
     * </p>
     * @param string $class_name [optional] <p>
     * name of a subclass of HttpInflateStream
     * </p>
     * @return HttpInflateStream
     */
    public static function factory($flags = null, $class_name = null) {}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



