1 | <?php |
||
7 | final class EspiritoSanto extends State |
||
8 | { |
||
9 | const LONG_NAME = 'EspiritoSanto'; |
||
10 | |||
11 | const REGEX = '/^(\d{3})(\d{3})(\d{2})(\d{1})$/'; |
||
12 | |||
13 | const FORMAT = '$1.$2.$3-$4'; |
||
14 | |||
15 | const LENGTH = 9; |
||
16 | |||
17 | const DIGITS_COUNT = 1; |
||
18 | |||
19 | const SHORT_NAME = 'ES'; |
||
20 | |||
21 | 11 | public function __construct() |
|
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | * |
||
29 | * @see http://www.sintegra.gov.br/Cad_Estados/cad_ES.html |
||
30 | */ |
||
31 | 9 | public function calculateDigit($baseNumber) |
|
42 | } |
||
43 |