1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 12:47:39 +02:00

Fix json formatter to call parent constructor

This commit is contained in:
Jordi Boggiano
2021-07-05 13:08:21 +02:00
parent b2ad71de59
commit 4b9fdf77ca

View File

@@ -44,6 +44,8 @@ class JsonFormatter extends NormalizerFormatter
$this->batchMode = $batchMode;
$this->appendNewline = $appendNewline;
$this->ignoreEmptyContextAndExtra = $ignoreEmptyContextAndExtra;
parent::__construct();
}
/**