Skip to content

Commit

Permalink
Missing $ sign
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Pieters authored Oct 26, 2017
1 parent 845c208 commit 3fac920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Message/PurchaseRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function sendData($data) {
*/
public function getAddressParts($address) {
$addressParts = [];
preg_match($this->addressRegex, address, $addressParts);
preg_match($this->addressRegex, $address, $addressParts);
return array_filter($addressParts, 'trim');
}
}

0 comments on commit 3fac920

Please sign in to comment.