Commit 301965fc authored by cyattilakiss's avatar cyattilakiss Committed by GitHub

Merge pull request #471 from peterjaap/patch-2

Update Requests.php
parents a9cb752b c54367b0
......@@ -450,7 +450,7 @@ class Requests extends AbstractHelper
// Parse address into street and house number where possible
$address = $this->adyenHelper->getStreetFromString($address->getStreetFull());
} else {
$address = $this->adyenHelper->getStreetFromString($address->getStreetLine1());
$address = $this->adyenHelper->getStreetFromString(implode(' ', [$address->getStreetLine1(), $address->getStreetLine2()]));
}
return $address;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment