Skip to content

Commit a38cb4b

Browse files
committed
fix: missing nested scrubber
1 parent a484be9 commit a38cb4b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/bootstrap.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ function scrubCassette(mixed $data): mixed
7272
if (is_array($item)) {
7373
if (array_key_exists($key, $item)) {
7474
$data[$index][$key] = $replacement;
75+
} else {
76+
$data[$index] = scrubCassette($item);
7577
}
7678
}
7779
}

0 commit comments

Comments
 (0)