Reformat various code.

This commit is contained in:
James Cole
2022-03-29 15:01:12 +02:00
parent d04efb8325
commit 452b6d0e1b
19 changed files with 95 additions and 94 deletions

View File

@@ -52,35 +52,35 @@ return [
*/
'disks' => [
'local' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
// local storage configuration for upload and export:
'upload' => [
'upload' => [
'driver' => 'local',
'root' => storage_path('upload'),
],
'export' => [
'export' => [
'driver' => 'local',
'root' => storage_path('export'),
],
// various other paths:
'database' => [
'database' => [
'driver' => 'local',
'root' => storage_path('database'),
],
'seeds' => [
'seeds' => [
'driver' => 'local',
'root' => base_path('resources/seeds'),
],
'stubs' => [
'stubs' => [
'driver' => 'local',
'root' => base_path('resources/stubs'),
],
'resources' => [
'resources' => [
'driver' => 'local',
'root' => base_path('resources'),
],