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

Merge branch '1.x' into main

This commit is contained in:
Jordi Boggiano
2020-12-09 14:19:00 +01:00
9 changed files with 161 additions and 46 deletions

View File

@@ -75,6 +75,7 @@ class DynamoDbHandler extends AbstractProcessingHandler
if ($this->version === 3) {
$formatted = $this->marshaler->marshalItem($filtered);
} else {
/** @phpstan-ignore-next-line */
$formatted = $this->client->formatAttributes($filtered);
}

View File

@@ -177,7 +177,7 @@ final class Utils
* Function converts the input in place in the passed variable so that it
* can be used as a callback for array_walk_recursive.
*
* @param mixed &$data Input to check and convert if needed
* @param mixed $data Input to check and convert if needed, passed by ref
*/
private static function detectAndCleanUtf8(&$data)
{