From 69a948112af8380b9ff6fa0a6ab680136b97777e Mon Sep 17 00:00:00 2001 From: Bastian Allgeier Date: Tue, 19 Feb 2019 16:36:11 +0100 Subject: [PATCH] Improve comment --- src/Data/Txt.php | 1 + 1 file changed, 1 insertion(+) 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); }