Activate exception on failed file write

This commit is contained in:
Constantin Graf
2024-05-01 21:40:07 +02:00
parent 7117dfca6c
commit c3010c7f62

View File

@@ -35,7 +35,7 @@ return [
'local' => [ 'local' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path('app'), 'root' => storage_path('app'),
'throw' => false, 'throw' => true,
], ],
'public' => [ 'public' => [
@@ -43,7 +43,7 @@ return [
'root' => storage_path('app/public'), 'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage', 'url' => env('APP_URL').'/storage',
'visibility' => 'public', 'visibility' => 'public',
'throw' => false, 'throw' => true,
], ],
's3' => [ 's3' => [
@@ -55,13 +55,13 @@ return [
'url' => env('S3_URL'), 'url' => env('S3_URL'),
'endpoint' => env('S3_ENDPOINT'), 'endpoint' => env('S3_ENDPOINT'),
'use_path_style_endpoint' => env('S3_USE_PATH_STYLE_ENDPOINT', false), 'use_path_style_endpoint' => env('S3_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false, 'throw' => true,
], ],
'testfiles' => [ 'testfiles' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path('tests'), 'root' => storage_path('tests'),
'throw' => false, 'throw' => true,
], ],
], ],