1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-03 19:57:41 +02:00

Make the AbstractHandler have proper default in case the constructor is overriden and not called

This commit is contained in:
Jordi Boggiano
2011-04-06 13:56:23 +02:00
parent 7fd13f6aec
commit 0a09d83fb6

View File

@@ -24,8 +24,8 @@ use Monolog\Formatter\LineFormatter;
*/
abstract class AbstractHandler implements HandlerInterface
{
protected $level;
protected $bubble;
protected $level = Logger::DEBUG;
protected $bubble = false;
protected $formatter;
protected $processors = array();