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

Fix english in doc blocks

This commit is contained in:
Tiago Brito
2013-11-19 16:18:58 +00:00
parent 06667ddf0b
commit 474250f5ff

View File

@@ -19,9 +19,8 @@ namespace Monolog\Formatter;
*/ */
class HtmlEmailFormatter extends NormalizerFormatter class HtmlEmailFormatter extends NormalizerFormatter
{ {
/** /**
* Translates Monolog log levels to html colors priorities. * Translates Monolog log levels to html color priorities.
*/ */
private $logLevels = array( private $logLevels = array(
Logger::DEBUG => '#cccccc', Logger::DEBUG => '#cccccc',
@@ -43,7 +42,7 @@ class HtmlEmailFormatter extends NormalizerFormatter
} }
/** /**
* Create a HTML table row * Creates an HTML table row
* *
* @param $th string Row header content * @param $th string Row header content
* @param string $td Row standard cell content * @param string $td Row standard cell content
@@ -57,7 +56,7 @@ class HtmlEmailFormatter extends NormalizerFormatter
/** /**
* Create a HTML h1 tag * Create a HTML h1 tag
* *
* @param $title string Text to be in the H1 * @param $title string Text to be in the h1
* @param $level integer Error level * @param $level integer Error level
* @return string * @return string
*/ */