1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-07 21:56:31 +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
parent 144b66be83
commit b18092d4a2

View File

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