mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 18:18:18 +01:00
* 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>
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() {}
|
|
}
|