mirror of
https://github.com/elyby/accounts.git
synced 2024-12-23 05:39:54 +05:30
Fixes ACCOUNTS-BH. Fix port param type
This commit is contained in:
parent
2d649afd4f
commit
2442329895
@ -63,7 +63,7 @@ return [
|
||||
'host' => getenv('SMTP_HOST'),
|
||||
'username' => getenv('SMTP_USER'),
|
||||
'password' => getenv('SMTP_PASS'),
|
||||
'port' => getenv('SMTP_PORT') ?: 587,
|
||||
'port' => (int)(getenv('SMTP_PORT') ?: 587),
|
||||
'encryption' => getenv('SMTP_ENCRYPTION') ?: 'tls',
|
||||
],
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user