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

Added missing initialization of the arrays for TestHandler

This commit is contained in:
Christophe Coevoet
2011-05-31 00:23:27 +02:00
parent 1defa7857f
commit c1669860fa

View File

@@ -22,8 +22,8 @@ use Monolog\Logger;
*/ */
class TestHandler extends AbstractProcessingHandler class TestHandler extends AbstractProcessingHandler
{ {
protected $records; protected $records = array();
protected $recordsByLevel; protected $recordsByLevel = array();
public function getRecords() public function getRecords()
{ {