Skip to content

Commit dcb35ff

Browse files
authored
Update outdated config files (#52150)
1 parent dc54770 commit dcb35ff

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

config/cache.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@
4040

4141
'database' => [
4242
'driver' => 'database',
43-
'table' => env('DB_CACHE_TABLE', 'cache'),
4443
'connection' => env('DB_CACHE_CONNECTION'),
44+
'table' => env('DB_CACHE_TABLE', 'cache'),
4545
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
46+
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
4647
],
4748

4849
'file' => [

config/filesystems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
| may even configure multiple disks for the same driver. Examples for
2525
| most supported storage drivers are configured here for reference.
2626
|
27-
| Supported Drivers: "local", "ftp", "sftp", "s3"
27+
| Supported drivers: "local", "ftp", "sftp", "s3"
2828
|
2929
*/
3030

config/logging.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
| utilizes the Monolog PHP logging library, which includes a variety
4646
| of powerful log handlers and formatters that you're free to use.
4747
|
48-
| Available Drivers: "single", "daily", "slack", "syslog",
48+
| Available drivers: "single", "daily", "slack", "syslog",
4949
| "errorlog", "monolog", "custom", "stack"
5050
|
5151
*/

config/mail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'username' => env('MAIL_USERNAME'),
4747
'password' => env('MAIL_PASSWORD'),
4848
'timeout' => null,
49-
'local_domain' => env('MAIL_EHLO_DOMAIN'),
49+
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
5050
],
5151

5252
'ses' => [

0 commit comments

Comments
 (0)