From 2a02544d11933b14ea57f767ce37dd1a81fbe1fb Mon Sep 17 00:00:00 2001 From: Herbert Maschke Date: Thu, 28 Dec 2017 10:52:42 +0100 Subject: [PATCH] fix parameterArray assignment issue fix parameterArray assignment issue in SofortChecksum#parameterize --- lib/Paymill/Models/Request/SofortChecksum.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Paymill/Models/Request/SofortChecksum.php b/lib/Paymill/Models/Request/SofortChecksum.php index fe811be..45d03f6 100755 --- a/lib/Paymill/Models/Request/SofortChecksum.php +++ b/lib/Paymill/Models/Request/SofortChecksum.php @@ -209,19 +209,19 @@ public function parameterize($method) } if ($this->getCountry()) { - $parametersArray['country'] = $this->getCountry(); + $parameterArray['country'] = $this->getCountry(); } if ($this->getClientEmail()) { - $parametersArray['client_email'] = $this->getClientEmail(); + $parameterArray['client_email'] = $this->getClientEmail(); } if ($this->getBillingAddress()) { - $parametersArray['billing_address'] = $this->getBillingAddress(); + $parameterArray['billing_address'] = $this->getBillingAddress(); } if ($this->getClientPhoneNumber()) { - $parametersArray['client_phone_number'] = $this->getClientPhoneNumber(); + $parameterArray['client_phone_number'] = $this->getClientPhoneNumber(); } }