mirror of
https://github.com/elyby/accounts.git
synced 2024-12-23 22:00:06 +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'),
|
'host' => getenv('SMTP_HOST'),
|
||||||
'username' => getenv('SMTP_USER'),
|
'username' => getenv('SMTP_USER'),
|
||||||
'password' => getenv('SMTP_PASS'),
|
'password' => getenv('SMTP_PASS'),
|
||||||
'port' => getenv('SMTP_PORT') ?: 587,
|
'port' => (int)(getenv('SMTP_PORT') ?: 587),
|
||||||
'encryption' => getenv('SMTP_ENCRYPTION') ?: 'tls',
|
'encryption' => getenv('SMTP_ENCRYPTION') ?: 'tls',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user