Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
47 | 11 | public function calculateDigit($baseNumber) |
|
48 | { |
||
49 | 11 | $calculator = new CnsCalculator(); |
|
50 | |||
51 | 11 | if (in_array(substr($baseNumber, 0, 1), [7, 8, 9])) { |
|
52 | 1 | $calculator = new TemporaryCalculator(); |
|
53 | } |
||
54 | |||
55 | 11 | $digit = $calculator->calculateDigit($baseNumber); |
|
56 | |||
57 | 11 | return "{$digit}"; |
|
58 | } |
||
59 | } |
||
60 |