mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
[11.x] Removed useless null parameter for env helper (#6373)
This commit is contained in:
parent
51c4166bfb
commit
eb8f9dc2d6
@ -36,7 +36,7 @@ return [
|
|||||||
|
|
||||||
'database' => [
|
'database' => [
|
||||||
'driver' => 'database',
|
'driver' => 'database',
|
||||||
'connection' => env('DB_QUEUE_CONNECTION', null),
|
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||||
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
||||||
'queue' => env('DB_QUEUE', 'default'),
|
'queue' => env('DB_QUEUE', 'default'),
|
||||||
'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90),
|
'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user