| 1 | <?php |
||
| 12 | class Kti |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $iban; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $bic; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $accountNumber; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | protected $subAccountFeature; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var Kik |
||
| 36 | */ |
||
| 37 | protected $kik; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Kti constructor. |
||
| 41 | * |
||
| 42 | * @param string $iban |
||
| 43 | * @param string $bic |
||
| 44 | * @param string $accountNumber |
||
| 45 | * @param string $subAccountFeature |
||
| 46 | * @param Kik $kik |
||
| 47 | */ |
||
| 48 | 1 | public function __construct($iban, $bic, $accountNumber, $subAccountFeature, Kik $kik) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * @return string |
||
| 59 | */ |
||
| 60 | 1 | public function toString() |
|
| 68 | |||
| 69 | /** |
||
| 70 | * @return string |
||
| 71 | */ |
||
| 72 | 1 | public function __toString() |
|
| 76 | } |
||
| 77 |