Skip to content

Commit

Permalink
fix: missing nested scrubber
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Sep 19, 2024
1 parent a484be9 commit a38cb4b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ function scrubCassette(mixed $data): mixed
if (is_array($item)) {
if (array_key_exists($key, $item)) {
$data[$index][$key] = $replacement;
} else {
$data[$index] = scrubCassette($item);
}
}
}
Expand Down

0 comments on commit a38cb4b

Please sign in to comment.