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