[TASK] Add double to parsed objects

This commit is contained in:
Philipp Dieter 2021-08-10 18:00:07 +02:00
parent ba0f11ccfb
commit 802f44f51c

View File

@ -91,6 +91,7 @@ class ApiUtility
if (gettype($methodResult) == 'string' if (gettype($methodResult) == 'string'
|| gettype($methodResult) == 'integer' || gettype($methodResult) == 'integer'
|| gettype($methodResult) == 'boolean' || gettype($methodResult) == 'boolean'
|| gettype($methodResult) == 'double'
) { ) {
$rowResult[$attributeName] = $methodResult; $rowResult[$attributeName] = $methodResult;
} }