1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-08 14:16:42 +02:00
This commit is contained in:
Jordi Boggiano
2015-03-05 00:51:38 +00:00
parent 63eb878d97
commit 50b6a4d216
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ abstract class MailHandler extends AbstractProcessingHandler
/**
* Send a mail with the given content
*
* @param string $content
* @param string $content formatted email body to be sent
* @param array $records the array of log records that formed this content
*/
abstract protected function send($content, array $records);

View File

@@ -48,7 +48,7 @@ class SwiftMailerHandler extends MailHandler
/**
* Creates instance of Swift_Message to be sent
*
* @param string $content
* @param string $content formatted email body to be sent
* @param array $records Log records that formed the content
* @return \Swift_Message
*/