Acre::calculateDigit()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 8
nc 1
nop 1
dl 0
loc 11
ccs 9
cts 9
cp 1
crap 1
rs 10
c 1
b 0
f 1
1
<?php
2
3
namespace Brazanation\Documents\StateRegistration;
4
5
use Brazanation\Documents\DigitCalculator;
6
7
final class Acre extends State
8
{
9
    const LONG_NAME = 'Acre';
10
11
    const SHORT_NAME = 'AC';
12
13
    const REGEX = '/^(01)(\d{3})(\d{3})(\d{3})(\d{2})$/';
14
15
    const FORMAT = '$1.$2.$3/$4-$5';
16
17
    const LENGTH = 13;
18
19
    const NUMBER_OF_DIGITS = 2;
20
21 6
    public function __construct()
22
    {
23 6
        parent::__construct(self::LONG_NAME, self::LENGTH, self::NUMBER_OF_DIGITS, self::REGEX, self::FORMAT);
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     *
29
     * @see http://www.sintegra.gov.br/Cad_Estados/cad_AC.html
30
     */
31 6
    public function calculateDigit(string $baseNumber) : string
32
    {
33 6
        $calculator = new DigitCalculator($baseNumber);
34 6
        $calculator->useComplementaryInsteadOfModule();
35 6
        $calculator->replaceWhen('0', 10, 11);
36 6
        $calculator->withModule(DigitCalculator::MODULE_11);
37 6
        $firstDigit = $calculator->calculate();
38 6
        $calculator->addDigit($firstDigit);
39 6
        $secondDigit = $calculator->calculate();
40
41 6
        return "{$firstDigit}{$secondDigit}";
42
    }
43
}
44