1 | <?php |
||
14 | class HKVVB extends AbstractSegment |
||
15 | { |
||
16 | const NAME = 'HKVVB'; |
||
17 | const VERSION = 3; |
||
18 | |||
19 | const DEFAULT_BPD_VERSION = 0; |
||
20 | const DEFAULT_UPD_VERSION = 0; |
||
21 | |||
22 | const LANG_DEFAULT = 0; |
||
23 | const LANG_DE = 1; |
||
24 | const LANG_EN = 2; |
||
25 | const LANG_FR = 3; |
||
26 | |||
27 | const DEFAULT_PRODUCT_NAME = 'fints-hbci-php'; |
||
28 | const DEFAULT_PRODUCT_VERSION = '1.0'; |
||
29 | |||
30 | /** |
||
31 | * HKVVB constructor. |
||
32 | * @param int $segmentNumber |
||
33 | * @param int $bpdVersion |
||
34 | * @param int $updVersion |
||
35 | * @param int $dialogLanguage |
||
36 | * @param string $productName |
||
37 | * @param string $productVersion |
||
38 | */ |
||
39 | public function __construct( |
||
60 | |||
61 | /** |
||
62 | * @return string |
||
63 | */ |
||
64 | public function getName() |
||
68 | } |
||
69 |