Files
dolibarr/dev/tools/phan/stubs/brotli.phan_php
MDW 8655d5a86b QUAL Use phan to help detect new issues (#27706)
* Qual: Add phan flow

- Add phan configuration (config, baseline, stubs);
- Add github action;
- Update apstats.php.

* Add directives to ignore false phan notices

* Qual: Add typing hints for extrafields TPL files

# Qual: Add typing hints for extrafields TPL files

Add typing hints for phan on view files

---------

Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
2024-02-21 18:14:29 +01:00

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() {}
}