From 802f44f51ce1d101f310199698893ab5d5c76121 Mon Sep 17 00:00:00 2001 From: Philipp Dieter Date: Tue, 10 Aug 2021 18:00:07 +0200 Subject: [PATCH] [TASK] Add double to parsed objects --- Classes/Utility/ApiUtility.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/Utility/ApiUtility.php b/Classes/Utility/ApiUtility.php index bcd7745..f36dd0e 100644 --- a/Classes/Utility/ApiUtility.php +++ b/Classes/Utility/ApiUtility.php @@ -91,6 +91,7 @@ class ApiUtility if (gettype($methodResult) == 'string' || gettype($methodResult) == 'integer' || gettype($methodResult) == 'boolean' + || gettype($methodResult) == 'double' ) { $rowResult[$attributeName] = $methodResult; }