Skip to content

Commit

Permalink
fix: Arguments order fix when parsing array parameters (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
daycry authored May 22, 2024
1 parent 7887f3e commit 07a80f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private function parameterAsArray(ParameterCollection $parameters, string $name)

return array_map(
fn(string $value): string => trim($value),
explode($value, ",")
explode(",", $value)
);
}
}

0 comments on commit 07a80f9

Please sign in to comment.