Skip to content

Commit

Permalink
Merge pull request #433 from smithbm2316/v3
Browse files Browse the repository at this point in the history
Fix | Resolve headers with array as value
  • Loading branch information
Sammyjo20 committed Jun 26, 2024
2 parents ea50417 + ed6f6dd commit 113332a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/FixtureHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static function recursivelyReplaceAttributes(array $source, array $rules,

array_walk_recursive($source, static function (&$value, $key) use ($rules, $caseSensitiveKeys) {
if ($caseSensitiveKeys === false) {
$key = mb_strtolower($key);
$key = mb_strtolower((string) $key);
}

if (! array_key_exists($key, $rules)) {
Expand Down

0 comments on commit 113332a

Please sign in to comment.