fix missing class in NewUserMailHelper and static code analysis errors

Signed-off-by: Bennet Becker <dev@bennet.cc>
This commit is contained in:
Bennet Becker 2023-01-03 16:23:41 +01:00
Родитель 5a1cc8de9b
Коммит c8bde160cd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B4C66D4902D1FA86
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -35,7 +35,7 @@ use OCP\IConfig;
use OCP\IURLGenerator;
use OCP\IUser;
use OCP\L10N\IFactory;
use OCP\Mail\Header\AutoSubmitted;
use OCP\Mail\Headers\AutoSubmitted;
use OCP\Mail\IEMailTemplate;
use OCP\Mail\IMailer;
use OCP\Security\ICrypto;

Просмотреть файл

@ -39,7 +39,7 @@ final class AutoSubmitted {
/**
* Name of the Header as used in the final message later
*
*
* @var string
* @since 26.0.0
*/

Просмотреть файл

@ -98,7 +98,7 @@ interface IMessage {
* Add the Auto-Submitted header to the email, preventing most automated
* responses to automated messages.
*
* @param AutoSubmitted::VALUE_* $value (one of AutoSubmitted::VALUE_NO, AutoSubmitted::VALUE_AUTO_GENERATED, AutoSubmitted::VALUE_AUTO_REPLIED)
* @param Headers\AutoSubmitted::VALUE_* $value (one of AutoSubmitted::VALUE_NO, AutoSubmitted::VALUE_AUTO_GENERATED, AutoSubmitted::VALUE_AUTO_REPLIED)
* @return IMessage
* @since 26.0.0
*/