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

Fixed $handler property visibility

According to the given example, $handler property should not be private.
This commit is contained in:
Andrzej Kupczyk
2016-04-15 18:45:46 +02:00
committed by Jordi Boggiano
parent 5f56ed5212
commit 04dedae4a8

View File

@@ -33,7 +33,7 @@ class HandlerWrapper implements HandlerInterface
/**
* @var HandlerInterface
*/
private $handler;
protected $handler;
/**
* HandlerWrapper constructor.