diff --git a/src/Data/Txt.php b/src/Data/Txt.php index 327caee9bb..5f8deb5fc0 100644 --- a/src/Data/Txt.php +++ b/src/Data/Txt.php @@ -50,6 +50,7 @@ protected static function encodeValue($value): string // avoid problems with arrays if (is_array($value) === true) { $value = Yaml::encode($value); + // avoid problems with localized floats } elseif (is_float($value) === true) { $value = Str::float($value); }