[11.x] Removed useless null parameter for env helper (#6373)

This commit is contained in:
Sergey Pashkevich 2024-03-15 13:19:40 +03:00 committed by GitHub
parent 51c4166bfb
commit eb8f9dc2d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ return [
'database' => [
'driver' => 'database',
'connection' => env('DB_QUEUE_CONNECTION', null),
'connection' => env('DB_QUEUE_CONNECTION'),
'table' => env('DB_QUEUE_TABLE', 'jobs'),
'queue' => env('DB_QUEUE', 'default'),
'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90),