Skip to content

Commit

Permalink
Added amount to transaction model
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelraess committed Jun 21, 2018
1 parent 9817c03 commit c326f41
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lib/Payrexx/Models/Request/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,25 @@
*/
class Transaction extends \Payrexx\Models\Base
{
/** @var int $amount */
protected $amount;

/**
* @return int
*/
public function getAmount()
{
return $this->amount;
}

/**
* @param int $amount
*/
public function setAmount($amount)
{
$this->amount = $amount;
}

/**
* {@inheritdoc}
*/
Expand Down

0 comments on commit c326f41

Please sign in to comment.