1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 12:47:39 +02:00

Allow null subjects in SwiftMailerHandler, fixes #1479

This commit is contained in:
Jordi Boggiano
2020-07-08 11:59:01 +02:00
parent 62700a29cc
commit 1eafcbf040

View File

@@ -52,9 +52,9 @@ class SwiftMailerHandler extends MailHandler
/**
* Gets the formatter for the Swift_Message subject.
*
* @param string $format The format of the subject
* @param string|null $format The format of the subject
*/
protected function getSubjectFormatter(string $format): FormatterInterface
protected function getSubjectFormatter(?string $format): FormatterInterface
{
return new LineFormatter($format);
}