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

Merge remote-tracking branch 'ondrejmirtes/phpstan'

This commit is contained in:
Jordi Boggiano
2016-07-29 04:51:47 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ class MandrillHandler extends MailHandler
/**
* {@inheritdoc}
*/
protected function send($content, array $records)
protected function send(string $content, array $records)
{
$mime = null;
if ($this->isHtmlBody($content)) {

View File

@@ -72,7 +72,7 @@ class SendGridHandler extends MailHandler
/**
* {@inheritdoc}
*/
protected function send($content, array $records)
protected function send(string $content, array $records)
{
$message = [];
$message['api_user'] = $this->apiUser;