Mark Account password as sensitive information, so it won't get included in log files

see https://www.php.net/manual/en/class.sensitiveparameter.php
This commit is contained in:
David Edler 2023-12-03 20:57:29 +01:00 committed by GitHub
parent ef5c3f73a5
commit 758ce9805e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,7 @@ abstract class Account implements \JsonSerializable
private string $sLogin = '';
#[\SensitiveParameter]
private string $sPassword = '';
private string $sSmtpLogin = '';