We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59e2e5e commit 1aeccbdCopy full SHA for 1aeccbd
src/LaravelUploader/helpers.php
@@ -10,9 +10,9 @@
10
*/
11
function uploader_strategy($strategy)
12
{
13
- return array_merge_recursive_distinct(config('uploader.strategies.default'), config('uploader.strategies.'.$strategy, [
+ return array_merge_recursive_distinct([
14
'filters' => [],
15
- ]));
+ ], config('uploader.strategies.default'), config('uploader.strategies.'.$strategy));
16
}
17
18
0 commit comments