respect-validation/library/Rules/Locale/ItSubdivisionCode.php
Henrique Moody b7043b2652
Set up "squizlabs/php_codesniffer"
The tool we used to verify whether the code base has the correct coding
standard was removed [1].

This commit will set up one that works best for us and will also make
sure we have fully compliant to PS1 and PSR2.

[1]: ffec95acda

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-02-03 19:39:14 +01:00

163 lines
4.5 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules\Locale;
use Respect\Validation\Rules\AbstractSearcher;
/**
* Validates whether an input is subdivision code of Italy or not.
*
* ISO 3166-1 alpha-2: IT
*
* @see http://www.geonames.org/IT/administrative-division-italy.html
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class ItSubdivisionCode extends AbstractSearcher
{
/**
* {@inheritdoc}
*/
protected function getDataSource(): array
{
return [
'21', // Piedmont
'23', // Regione Autonoma Valle d'Aosta
'25', // Lombardy
'32', // Regione Autonoma Trentino-Alto Adige
'34', // Regione del Veneto
'36', // Regione Autonoma Friuli-Venezia Giulia
'42', // Regione Liguria
'45', // Regione Emilia-Romagna
'52', // Tuscany
'55', // Regione Umbria
'57', // Regione Marche
'62', // Regione Lazio
'65', // Regione Abruzzo
'67', // Regione Molise
'72', // Regione Campania
'75', // Regione Puglia
'77', // Regione Basilicata
'78', // Regione Calabria
'82', // Regione Autonoma Siciliana
'88', // Regione Autonoma della Sardegna
'AG', // Agrigento
'AL', // Alessandria
'AN', // Ancona
'AO', // Aosta
'AP', // Ascoli Piceno
'AQ', // L'Aquila
'AR', // Arezzo
'AT', // Asti
'AV', // Avellino
'BA', // Bari
'BG', // Bergamo
'BI', // Biella
'BL', // Belluno
'BN', // Benevento
'BO', // Bologna
'BR', // Brindisi
'BS', // Brescia
'BT', // Barletta-Andria-Trani
'BZ', // Bolzano
'CA', // Cagliari
'CB', // Campobasso
'CE', // Caserta
'CH', // Chieti
'CL', // Caltanissetta
'CN', // Cuneo
'CO', // Como
'CR', // Cremona
'CS', // Cosenza
'CT', // Catania
'CZ', // Catanzaro
'EN', // Enna
'FC', // Forlì-Cesena
'FE', // Ferrara
'FG', // Foggia
'FI', // Firenze
'FM', // Fermo
'FR', // Frosinone
'GE', // Genova
'GO', // Gorizia
'GR', // Grosseto
'IM', // Imperia
'IS', // Isernia
'KR', // Crotone
'LC', // Lecco
'LE', // Lecce
'LI', // Livorno
'LO', // Lodi
'LT', // Latina
'LU', // Lucca
'MB', // Monza e Brianza
'MC', // Macerata
'ME', // Messina
'MI', // Milano
'MN', // Mantova
'MO', // Modena
'MS', // Massa-Carrara
'MT', // Matera
'NA', // Napoli
'NO', // Novara
'NU', // Nuoro
'OR', // Oristano
'PA', // Palermo
'PC', // Piacenza
'PD', // Padova
'PE', // Pescara
'PG', // Perugia
'PI', // Pisa
'PN', // Pordenone
'PO', // Prato
'PR', // Parma
'PT', // Pistoia
'PU', // Pesaro e Urbino
'PV', // Pavia
'PZ', // Potenza
'RA', // Ravenna
'RC', // Reggio Calabria
'RE', // Reggio Emilia
'RG', // Ragusa
'RI', // Rieti
'RM', // Roma
'RN', // Rimini
'RO', // Rovigo
'SA', // Salerno
'SI', // Siena
'SO', // Sondrio
'SP', // La Spezia
'SR', // Siracusa
'SS', // Sassari
'SV', // Savona
'TA', // Taranto
'TE', // Teramo
'TN', // Trento
'TO', // Torino
'TP', // Trapani
'TR', // Terni
'TS', // Trieste
'TV', // Treviso
'UD', // Udine
'VA', // Varese
'VB', // Verbano-Cusio-Ossola
'VC', // Vercelli
'VE', // Venezia
'VI', // Vicenza
'VR', // Verona
'VT', // Viterbo
'VV', // Vibo Valentia
];
}
}