Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | protected function thirdDigitValidation(string $identification_number): void |
||
20 | { |
||
21 | $third_digit = $this->getThirdDigitValue($identification_number); |
||
22 | |||
23 | if ($third_digit > $this->thirdDigit) { |
||
24 | throw new \Exception("Field must have the third digit less than or equal to {$this->thirdDigit}."); |
||
25 | } |
||
28 |