1 | <?php |
||
7 | class MatoGrosso extends State |
||
8 | { |
||
9 | const LONG_NAME = '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 | const SHORT_NAME = 'MT'; |
||
20 | |||
21 | 97 | public function __construct() |
|
25 | |||
26 | 97 | public function normalizeNumber($number) |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | * |
||
38 | * @see http://www.sintegra.gov.br/Cad_Estados/cad_MT.html |
||
39 | */ |
||
40 | 93 | public function calculateDigit($baseNumber) |
|
50 | } |
||
51 |