Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
48 | public function __construct(string $strCntry) |
||
49 | { |
||
50 | $this->strCntry = 'CH'; |
||
51 | $this->iLenIBAN = 21; |
||
52 | $this->strRegExIBAN = '/^([A-Z]){2}([0-9]){19}?$/'; |
||
53 | $this->iLenCI = 18; |
||
54 | $this->strRegExCI = '/^([A-Z]){2}([0-9]){2}([0-9A-Z]){3}([0-9]){11}?$/'; |
||
55 | |||
56 | parent::__construct(strtoupper($strCntry)); |
||
57 | } |
||
58 | } |