| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.0261 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 1 | public function setIban(string $iban): void |
|
| 30 | { |
||
| 31 | 1 | $validator = new \Zend\Validator\Iban(['country_code' => 'CH']); |
|
| 32 | 1 | if (empty($iban)) { |
|
| 33 | $this->iban = null; |
||
| 34 | 1 | } elseif ($validator->isValid($iban)) { |
|
| 35 | 1 | $this->iban = $iban; |
|
| 36 | } else { |
||
| 37 | 1 | throw new InvalidArgumentException('Invalid IBAN number'); |
|
| 38 | } |
||
| 51 |