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

Tweak HandlerWrapper example in docblock, fixes #991

This commit is contained in:
Jordi Boggiano
2017-06-19 01:07:32 +02:00
parent 765d225554
commit 357ae23fa4

View File

@@ -16,15 +16,17 @@ use Monolog\Formatter\FormatterInterface;
/** /**
* This simple wrapper class can be used to extend handlers functionality. * This simple wrapper class can be used to extend handlers functionality.
* *
* Example: A filtering handle. Inherit from this class, override isHandling() like this * Example: A custom filtering that can be applied to any handler.
* *
* public function isHandling(array $record) * Inherit from this class and override handle() like this:
* { *
* if ($record meets certain conditions) { * public function handle(array $record)
* return false; * {
* } * if ($record meets certain conditions) {
* return $this->handler->isHandling($record); * return false;
* } * }
* return $this->handler->handle($record);
* }
* *
* @author Alexey Karapetov <alexey@karapetov.com> * @author Alexey Karapetov <alexey@karapetov.com>
*/ */