From e9063947cee369a043b32b3c12e259c317ea7b7b Mon Sep 17 00:00:00 2001 From: Ben Boydens Date: Wed, 25 Sep 2024 16:04:07 +0200 Subject: [PATCH] fix - array to string conversion warning --- src/nusoap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nusoap.php b/src/nusoap.php index f5bf034..428155a 100644 --- a/src/nusoap.php +++ b/src/nusoap.php @@ -6068,7 +6068,7 @@ function serializeType($name, $type, $value, $use = 'encoded', $encodingStyle = } $attrs = $value->attributes; $value = $value->value; - $this->debug("in serializeType: soapval overrides value to $value"); + $this->debug("in serializeType: soapval overrides value to " . $this->varDump($value)); if ($attrs) { if (!is_array($value)) { $value['!'] = $value;