1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-20 11:51:32 +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

@@ -13,14 +13,14 @@ namespace Monolog\Formatter;
use Monolog\Logger;
class ChromePhpFormatterTest extends \PHPUnit_Framework_TestCase
class ChromePHPFormatterTest extends \PHPUnit_Framework_TestCase
{
/**
* @covers Monolog\Formatter\ChromePhpFormatter::format
* @covers Monolog\Formatter\ChromePHPFormatter::format
*/
public function testDefaultFormat()
{
$formatter = new ChromePhpFormatter();
$formatter = new ChromePHPFormatter();
$record = array(
'level' => Logger::ERROR,
'level_name' => 'ERROR',
@@ -49,11 +49,11 @@ class ChromePhpFormatterTest extends \PHPUnit_Framework_TestCase
}
/**
* @covers Monolog\Formatter\ChromePhpFormatter::format
* @covers Monolog\Formatter\ChromePHPFormatter::format
*/
public function testFormatWithFileAndLine()
{
$formatter = new ChromePhpFormatter();
$formatter = new ChromePHPFormatter();
$record = array(
'level' => Logger::CRITICAL,
'level_name' => 'CRITICAL',
@@ -82,11 +82,11 @@ class ChromePhpFormatterTest extends \PHPUnit_Framework_TestCase
}
/**
* @covers Monolog\Formatter\ChromePhpFormatter::format
* @covers Monolog\Formatter\ChromePHPFormatter::format
*/
public function testFormatWithoutContext()
{
$formatter = new ChromePhpFormatter();
$formatter = new ChromePHPFormatter();
$record = array(
'level' => Logger::DEBUG,
'level_name' => 'DEBUG',
@@ -111,11 +111,11 @@ class ChromePhpFormatterTest extends \PHPUnit_Framework_TestCase
}
/**
* @covers Monolog\Formatter\ChromePhpFormatter::formatBatch
* @covers Monolog\Formatter\ChromePHPFormatter::formatBatch
*/
public function testBatchFormatThrowException()
{
$formatter = new ChromePhpFormatter();
$formatter = new ChromePHPFormatter();
$records = array(
array(
'level' => Logger::INFO,