1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-09 22:56:41 +02:00

Remove the unused $format parameter from the construct

This commit is contained in:
Tiago Brito
2013-11-19 09:49:49 +00:00
parent 87b0e65952
commit 5ce58ad471

View File

@@ -35,10 +35,9 @@ class HtmlEmailFormatter extends NormalizerFormatter
);
/**
* @param string $format The format of the message
* @param string $dateFormat The format of the timestamp: one supported by DateTime::format
*/
public function __construct($format = null, $dateFormat = null)
public function __construct($dateFormat = null)
{
parent::__construct($dateFormat);
}