From 2e9dc9a34ddc6861eae22dd1e4ab30b288d2696f Mon Sep 17 00:00:00 2001 From: Tim Timmermans Date: Thu, 11 Jul 2019 14:50:44 +0200 Subject: [PATCH] Fix issue that each method param overrides the initial input message. --- src/BeSimple/SoapCommon/Definition/Method.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/BeSimple/SoapCommon/Definition/Method.php b/src/BeSimple/SoapCommon/Definition/Method.php index 7ef7e93..5c10f56 100644 --- a/src/BeSimple/SoapCommon/Definition/Method.php +++ b/src/BeSimple/SoapCommon/Definition/Method.php @@ -63,8 +63,6 @@ class Method public function addInput($name, $type) { - $this->input = new Message($name); - $this->input->add($name, $type); }