1 | <?php |
||
13 | class SEPACreditTransfer extends CreditTransfer |
||
14 | { |
||
15 | /** |
||
16 | * @var IBAN |
||
17 | */ |
||
18 | protected $creditorIBAN; |
||
19 | |||
20 | /** |
||
21 | * @var BIC |
||
22 | */ |
||
23 | protected $creditorAgentBIC; |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | * |
||
28 | * @param IBAN $creditorIBAN IBAN of the creditor |
||
29 | * @param BIC $creditorAgentBIC BIC of the creditor's financial institution |
||
30 | */ |
||
31 | 2 | public function __construct($instructionId, $endToEndId, Money\EUR $amount, $creditorName, PostalAddressInterface $creditorAddress, IBAN $creditorIBAN, BIC $creditorAgentBIC) |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 2 | public function asDom(\DOMDocument $doc) |
|
65 | } |
||
66 |