From 6a79b526bc97fad7c4bfeada27578f1814fe0dde Mon Sep 17 00:00:00 2001 From: Arend Hummeling Date: Thu, 24 Jul 2025 10:21:58 +0200 Subject: [PATCH] fix: resolve confusing typo in php config example --- logging/monolog_email.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logging/monolog_email.rst b/logging/monolog_email.rst index 99a416913c8..d52629e0797 100644 --- a/logging/monolog_email.rst +++ b/logging/monolog_email.rst @@ -180,7 +180,7 @@ You can adjust the time period using the ``time`` option: // ... $monolog->handler('deduplicated') - ->type('deduplicated') + ->type('deduplication') // the time in seconds during which duplicate entries are discarded (default: 60) ->time(10) ->handler('symfony_mailer') @@ -304,7 +304,7 @@ get logged on the server as well as the emails being sent: ; $monolog->handler('deduplicated') - ->type('deduplicated') + ->type('deduplication') ->handler('symfony_mailer') ;