1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-08 14:16:42 +02:00

Fix type errors, thanks phan

This commit is contained in:
Jordi Boggiano
2016-09-25 22:00:12 +02:00
parent 85792c8818
commit 5ce1c921ad
16 changed files with 56 additions and 68 deletions

View File

@@ -96,7 +96,7 @@ class LoggerTest extends \PHPUnit_Framework_TestCase
$logger->pushHandler($handler->reveal());
$this->assertTrue($logger->warning('test'));
$this->assertTrue($logger->addRecord(Logger::WARNING, 'test'));
}
/**
@@ -112,7 +112,7 @@ class LoggerTest extends \PHPUnit_Framework_TestCase
$logger->pushHandler($handler->reveal());
$this->assertFalse($logger->warning('test'));
$this->assertFalse($logger->addRecord(Logger::WARNING, 'test'));
}
public function testHandlersInCtor()