| 1 | <?php |
||
| 15 | class IbanBankAccount extends AbstractBankAccount |
||
| 16 | { |
||
| 17 | private $iban; |
||
| 18 | |||
| 19 | private $bic; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public function getIban() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param mixed $iban |
||
| 31 | */ |
||
| 32 | public function setIban($iban) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return mixed |
||
| 39 | */ |
||
| 40 | public function getBic() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param mixed $bic |
||
| 47 | */ |
||
| 48 | public function setBic($bic) |
||
| 52 | } |
||
| 53 |