Skip to content

Commit

Permalink
Merge pull request #221 from avadev/jwenger/214
Browse files Browse the repository at this point in the history
Fix github issue 214
  • Loading branch information
svc-developer authored Jul 8, 2024
2 parents 293723d + 2e4350f commit 9068af5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/TransactionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,18 @@ public function withBusinessIdentificationNo($no)
return $this;
}

/**
* Set a customer email
*
* @param string email
* @return TransactionBuilder
*/
public function withEmail($email)
{
$this->_model['email'] = $email;
return $this;
}

/**
* Set client application customer or usage type
*
Expand Down

0 comments on commit 9068af5

Please sign in to comment.