1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-23 17:46:09 +02:00

Rename ChromePhp to ChromePHP for consistency with FirePHP

This commit is contained in:
Jordi Boggiano
2012-02-20 17:33:29 +01:00
parent 1c717c3a6a
commit 8d4ac5c0f7
7 changed files with 28 additions and 28 deletions

View File

@@ -14,11 +14,11 @@ namespace Monolog\Formatter;
use Monolog\Logger;
/**
* Formats a log message according to the ChromePhp array format
* Formats a log message according to the ChromePHP array format
*
* @author Christophe Coevoet <stof@notk.org>
*/
class ChromePhpFormatter implements FormatterInterface
class ChromePHPFormatter implements FormatterInterface
{
/**
* Translates Monolog log levels to Wildfire levels.

View File

@@ -12,14 +12,14 @@
namespace Monolog\Handler;
use Monolog\Logger;
use Monolog\Formatter\ChromePhpFormatter;
use Monolog\Formatter\ChromePHPFormatter;
/**
* Handler sending logs to the ChromePHP extension (http://www.chromephp.com/)
*
* @author Christophe Coevoet <stof@notk.org>
*/
class ChromePhpHandler extends AbstractProcessingHandler
class ChromePHPHandler extends AbstractProcessingHandler
{
/**
* Version of the extension
@@ -67,7 +67,7 @@ class ChromePhpHandler extends AbstractProcessingHandler
*/
protected function getDefaultFormatter()
{
return new ChromePhpFormatter();
return new ChromePHPFormatter();
}
/**