Skip to content

Commit 1aeccbd

Browse files
committed
Bugfix. #10
1 parent 59e2e5e commit 1aeccbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LaravelUploader/helpers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
*/
1111
function uploader_strategy($strategy)
1212
{
13-
return array_merge_recursive_distinct(config('uploader.strategies.default'), config('uploader.strategies.'.$strategy, [
13+
return array_merge_recursive_distinct([
1414
'filters' => [],
15-
]));
15+
], config('uploader.strategies.default'), config('uploader.strategies.'.$strategy));
1616
}
1717
}
1818

0 commit comments

Comments
 (0)