Merge pull request #4236 from caiquecastro/master

Allow filesystem to be changed on config
This commit is contained in:
Taylor Otwell 2017-04-24 07:50:02 -05:00 committed by GitHub
commit 859479a033
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
|
*/
'default' => 'local',
'default' => env('FILESYSTEM_DRIVER', 'local'),
/*
|--------------------------------------------------------------------------
@ -26,7 +26,7 @@
|
*/
'cloud' => 's3',
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
/*
|--------------------------------------------------------------------------