chore: updates snapshots

This commit is contained in:
nuno maduro
2026-05-03 13:09:32 -03:00
parent 6cc48f63f8
commit 2fc75cfcf0
11 changed files with 2 additions and 35 deletions

View File

@ -258,23 +258,6 @@ final readonly class Fingerprint
return $cache[$key] = $finder->hasResults();
}
private static function sortRecursively(mixed &$value): void
{
if (! is_array($value)) {
return;
}
$isAssoc = ! array_is_list($value);
if ($isAssoc) {
ksort($value);
}
foreach ($value as &$child) {
self::sortRecursively($child);
}
}
private static function contentHashOrNull(string $path): ?string
{
if (! is_file($path)) {