From 93395a3468b7827bae2117de7543eddd5eb4a4e5 Mon Sep 17 00:00:00 2001 From: Ankur Kumar Date: Sun, 6 Mar 2022 22:00:51 +0530 Subject: [PATCH] [9.x] add throw to filesystems config (#5835) --- config/filesystems.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index 888bd1ee517..e9d9dbdbe8a 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -33,6 +33,7 @@ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), + 'throw' => false, ], 'public' => [ @@ -40,6 +41,7 @@ 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', + 'throw' => false, ], 's3' => [ @@ -51,6 +53,7 @@ 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, ], ],