30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
|
<?php
|
||
|
// These stubs were generated by the phan stub generator.
|
||
|
// @phan-stub-for-extension brotli@0.14.2
|
||
|
|
||
|
namespace {
|
||
|
function brotli_compress($data, $quality = null, $mode = null) {}
|
||
|
function brotli_compress_add($context, $data, $mode = null) {}
|
||
|
function brotli_compress_init($quality = null, $mode = null) {}
|
||
|
function brotli_uncompress($data, $max = null) {}
|
||
|
function brotli_uncompress_add($context, $data, $mode = null) {}
|
||
|
function brotli_uncompress_init() {}
|
||
|
const BROTLI_COMPRESS_LEVEL_DEFAULT = 11;
|
||
|
const BROTLI_COMPRESS_LEVEL_MAX = 11;
|
||
|
const BROTLI_COMPRESS_LEVEL_MIN = 0;
|
||
|
const BROTLI_FINISH = 2;
|
||
|
const BROTLI_FONT = 2;
|
||
|
const BROTLI_GENERIC = 0;
|
||
|
const BROTLI_PROCESS = 0;
|
||
|
const BROTLI_TEXT = 1;
|
||
|
}
|
||
|
|
||
|
namespace brotli {
|
||
|
function compress($data, $quality = null, $mode = null) {}
|
||
|
function compress_add($context, $data, $mode = null) {}
|
||
|
function compress_init($quality = null, $mode = null) {}
|
||
|
function uncompress($data, $max = null) {}
|
||
|
function uncompress_add($context, $data, $mode = null) {}
|
||
|
function uncompress_init() {}
|
||
|
}
|