chore: style

This commit is contained in:
nuno maduro
2026-05-03 13:06:24 -03:00
parent e0419d1328
commit 6cc48f63f8

View File

@ -1351,8 +1351,10 @@ final class Graph
foreach ($this->baselines[$branch]['results'] as $testId => $result) {
$file = $result['file'] ?? null;
if (! is_string($file) || ! isset($touched[$file])) {
if (! is_string($file)) {
continue;
}
if (! isset($touched[$file])) {
continue;
}