Making func signatures PHP8.3 compatible
Publish PHP Package / docker (push) Successful in 4s Details

This commit is contained in:
Pavel Shevaev 2024-03-14 12:52:51 +03:00
parent 135b6a2565
commit 7de6cf61c8
1 changed files with 2 additions and 10 deletions

View File

@ -143,11 +143,7 @@ function config_pack_bundle(
return $packed_data;
}
function _config_pack_bundle_fmt1(
array $cache_entries,
bool $use_lz4 = false,
bool $use_config_refs = false,
int $version) : string
function _config_pack_bundle_fmt1(array $cache_entries, bool $use_lz4, bool $use_config_refs, int $version) : string
{
$MAP = array();
$STRIDMAP = array();
@ -199,11 +195,7 @@ function _config_pack_bundle_fmt1(
return $packed_data;
}
function _config_pack_bundle_fmt2(
array $cache_entries,
bool $use_lz4 = false,
bool $use_config_refs = false,
int $version) : string
function _config_pack_bundle_fmt2(array $cache_entries, bool $use_lz4, bool $use_config_refs, int $version) : string
{
$MAP = array();
$STRIDMAP = array();