Skip to content

Commit

Permalink
Merge pull request #3 from barrycarrjr/master
Browse files Browse the repository at this point in the history
Missing required field [ssl_avs_zip]
  • Loading branch information
aperdomo authored Aug 31, 2016
2 parents 42df071 + 1c9ec04 commit 2885db1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Message/ConvergeAuthorizeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public function getData()
'ssl_address2' => $this->getCard()->getAddress2(),
'ssl_city' => $this->getCard()->getCity(),
'ssl_state' => $this->getCard()->getState(),
'ssl_country' => $this->getCard()->getCountry()
'ssl_country' => $this->getCard()->getCountry(),
'ssl_avs_zip' => $this->getCard()->getPostcode()
);

return array_merge($this->getBaseData(), $data);
Expand Down

0 comments on commit 2885db1

Please sign in to comment.