This commit is contained in:
nuno maduro
2026-05-04 08:02:09 -03:00
parent b828ddcec7
commit d17be9decd
5 changed files with 7 additions and 7 deletions

View File

@ -1289,7 +1289,7 @@ final class Graph
/** @param array<string, array<int, string>> $edges */
private function anyTestUses(array $edges, string $component): bool
{
return array_any($edges, fn ($components): bool => in_array($component, $components, true));
return array_any($edges, fn (array $components): bool => in_array($component, $components, true));
}
public function pruneMissingTests(): void