| 1 | <?php |
||
| 7 | class TransferTransaction implements Transfer |
||
| 8 | { |
||
| 9 | use Commit; |
||
| 10 | |||
| 11 | private $amount = 0; |
||
| 12 | |||
| 13 | private $currency = ''; |
||
| 14 | |||
| 15 | private $recipientIdentifier; |
||
| 16 | |||
| 17 | private $extraOptions; |
||
| 18 | |||
| 19 | 1 | public function __construct( |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function getAmount() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function getCurrency() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function getRecipientIdentifier() |
||
| 54 | |||
| 55 | public function canCommit() |
||
| 60 | |||
| 61 | public function getExtraOptions() |
||
| 65 | } |
||
| 66 |