-
Notifications
You must be signed in to change notification settings - Fork 0
/
States.php
33 lines (29 loc) · 1.03 KB
/
States.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
namespace dynamikaweb\brazilinfo;
/**
* States
*
* @var array LIST_ACRON abbreviations of the Brazilian states
* @var array LIST_NAMES full name of Brazilian states
*/
class States
{
const LIST_ACRON = [
'AC', 'AL', 'AP', 'AM', 'BA', 'CE', 'DF', 'ES', 'GO', 'MA', 'MT', 'MS', 'MG', 'PA', 'PB', 'PR', 'PE', 'PI', 'RJ', 'RN', 'RS', 'RO', 'RR', 'SC', 'SP', 'SE', 'TO'
];
const LIST_NAMES = [
'Acre', 'Alagoas', 'Amapá', 'Amazonas', 'Bahia', 'Ceará', 'Distrito Federal', 'Espírito Santo', 'Goiás', 'Maranhão', 'Mato Grosso', 'Mato Grosso do Sul', 'Minas Gerais', 'Pará', 'Paraíba', 'Paraná', 'Pernambuco', 'Piauí', 'Rio de Janeiro', 'Rio Grande do Norte', 'Rio Grande do Sul', 'Rondônia', 'Roraima', 'Santa Catarina', 'São Paulo', 'Sergipe', 'Tocantins'
];
/**
* keys as acronyms and names as values list
*
* @return array
*/
public static function list()
{
return array_combine(
self::LIST_ACRON,
self::LIST_NAMES
);
}
}