Skip to content

Commit ba39cea

Browse files
authored
Merge pull request #10 from therephil/patch-2
pass on options if $path is an array
2 parents a55afcf + 2ed7e27 commit ba39cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function mix($path, $options = null)
2626
$assets = [];
2727

2828
foreach($path as $p) {
29-
$assets[] = mix($p);
29+
$assets[] = mix($p, $options);
3030
}
3131

3232
return implode(PHP_EOL, $assets) . PHP_EOL;

0 commit comments

Comments
 (0)