Skip to content

Commit

Permalink
Merge pull request #10 from therephil/patch-2
Browse files Browse the repository at this point in the history
pass on options if $path is an array
  • Loading branch information
RobertCordes authored Apr 9, 2021
2 parents a55afcf + 2ed7e27 commit ba39cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function mix($path, $options = null)
$assets = [];

foreach($path as $p) {
$assets[] = mix($p);
$assets[] = mix($p, $options);
}

return implode(PHP_EOL, $assets) . PHP_EOL;
Expand Down

0 comments on commit ba39cea

Please sign in to comment.