From f6842ac92dcffe9e5bd3684c3ea3984e23c0e84d Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 8 Jun 2018 23:19:28 +0200 Subject: [PATCH] Avoid breaking the gelf handler when closing it, fixes #1016 --- src/Monolog/Handler/GelfHandler.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Monolog/Handler/GelfHandler.php b/src/Monolog/Handler/GelfHandler.php index d3847d82..71e46693 100644 --- a/src/Monolog/Handler/GelfHandler.php +++ b/src/Monolog/Handler/GelfHandler.php @@ -47,14 +47,6 @@ class GelfHandler extends AbstractProcessingHandler $this->publisher = $publisher; } - /** - * {@inheritdoc} - */ - public function close() - { - $this->publisher = null; - } - /** * {@inheritdoc} */