mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-11 23:54:04 +02:00
CS fixes
This commit is contained in:
@@ -13,7 +13,6 @@ namespace Monolog\Handler;
|
||||
|
||||
use Monolog\TestCase;
|
||||
use Monolog\Logger;
|
||||
use Monolog\Formatter\LineFormatter;
|
||||
|
||||
/**
|
||||
* @author Robert Kaufmann III <rok3@rok3.me>
|
||||
@@ -43,10 +42,10 @@ class LogEntriesHandlerTest extends TestCase
|
||||
|
||||
public function testWriteBatchContent()
|
||||
{
|
||||
$records = array(
|
||||
$this->getRecord(),
|
||||
$this->getRecord(),
|
||||
$this->getRecord()
|
||||
$records = array(
|
||||
$this->getRecord(),
|
||||
$this->getRecord(),
|
||||
$this->getRecord()
|
||||
);
|
||||
$this->createHandler();
|
||||
$this->handler->handleBatch($records);
|
||||
|
@@ -72,7 +72,7 @@ class RavenHandlerTest extends TestCase
|
||||
$this->assertEquals($ravenClient::WARNING, $ravenClient->lastData['level']);
|
||||
$this->assertContains($record['message'], $ravenClient->lastData['message']);
|
||||
}
|
||||
|
||||
|
||||
public function testTag()
|
||||
{
|
||||
$ravenClient = $this->getRavenClient();
|
||||
|
@@ -23,7 +23,7 @@ class TagProcessorTest extends TestCase
|
||||
$tags = array(1, 2, 3);
|
||||
$processor = new TagProcessor($tags);
|
||||
$record = $processor($this->getRecord());
|
||||
|
||||
|
||||
$this->assertEquals($tags, $record['extra']['tags']);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user