1 | <?php |
||
7 | class MatoGrosso extends State |
||
8 | { |
||
9 | const LABEL = 'MatoGrosso'; |
||
10 | |||
11 | const REGEX = '/^(\d{8,10})(\d{1})$/'; |
||
12 | |||
13 | const FORMAT = '$1-$2'; |
||
14 | |||
15 | const LENGTH = 11; |
||
16 | |||
17 | const DIGITS_COUNT = 1; |
||
18 | |||
19 | 97 | public function __construct() |
|
23 | |||
24 | 97 | public function normalizeNumber($number) |
|
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | * |
||
36 | * @see http://www.sintegra.gov.br/Cad_Estados/cad_MT.html |
||
37 | */ |
||
38 | 93 | public function calculateDigit($baseNumber) |
|
48 | } |
||
49 |