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