1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-22 09:06:10 +02:00
This commit is contained in:
Jordi Boggiano
2016-03-01 18:00:33 +00:00
parent fa96f6aa8f
commit 127d7720c9
5 changed files with 64 additions and 60 deletions

View File

@@ -74,6 +74,7 @@ class HandlerWrapper implements HandlerInterface
public function pushProcessor($callback)
{
$this->handler->pushProcessor($callback);
return $this;
}
@@ -91,6 +92,7 @@ class HandlerWrapper implements HandlerInterface
public function setFormatter(FormatterInterface $formatter)
{
$this->handler->setFormatter($formatter);
return $this;
}
@@ -101,4 +103,4 @@ class HandlerWrapper implements HandlerInterface
{
return $this->handler->getFormatter();
}
}
}