Gradually migrating to iterable instead of arrays
Publish PHP Package / docker (push) Successful in 8s Details

This commit is contained in:
Pavel Shevaev 2025-03-06 13:20:58 +03:00
parent 616c2c46d1
commit 4361e7579e
1 changed files with 2 additions and 4 deletions

View File

@ -87,8 +87,6 @@ function find_files(string $dir, array $fnmatch_patterns = []) : array
return $results; return $results;
} }
//obsolete, use find_files instead
function scan_files_rec(array $dirs, array $only_extensions = [], int $mode = 1) : array function scan_files_rec(array $dirs, array $only_extensions = [], int $mode = 1) : array
{ {
$files = array(); $files = array();
@ -168,7 +166,7 @@ function json_make_pretty(string $json) : string
return prettyJSON($json); return prettyJSON($json);
} }
function need_to_regen(string $file, array $deps, bool $debug = false) : bool function need_to_regen(string $file, iterable $deps, bool $debug = false) : bool
{ {
if(!is_file($file)) if(!is_file($file))
{ {
@ -1195,7 +1193,7 @@ function are_you_sure_ask() : bool
return $resp == "YES"; return $resp == "YES";
} }
function names_hash_changed(string $crc_file, array $names) : bool function names_hash_changed(string $crc_file, iterable $names) : bool
{ {
$ctx = hash_init('crc32'); $ctx = hash_init('crc32');
foreach($names as $name) foreach($names as $name)