mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
44 lines
1 KiB
PHP
44 lines
1 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.
|
|
*/
|
|
|
|
namespace Respect\Validation\Rules\SubdivisionCode;
|
|
|
|
use Respect\Validation\Rules\AbstractSearcher;
|
|
|
|
/**
|
|
* Validator for Cuba subdivision code.
|
|
*
|
|
* ISO 3166-1 alpha-2: CU
|
|
*
|
|
* @link http://www.geonames.org/CU/administrative-division-cuba.html
|
|
*/
|
|
class CuSubdivisionCode extends AbstractSearcher
|
|
{
|
|
public $haystack = array(
|
|
'01', // Pinar del Rio
|
|
'03', // La Habana
|
|
'04', // Matanzas
|
|
'05', // Villa Clara
|
|
'06', // Cienfuegos
|
|
'07', // Sancti Spiritus
|
|
'08', // Ciego de Avila
|
|
'09', // Camaguey
|
|
'10', // Las Tunas
|
|
'11', // Holguin
|
|
'12', // Granma
|
|
'13', // Santiago de Cuba
|
|
'14', // Guantanamo
|
|
'99', // Isla de la Juventud
|
|
'02', // La Habana
|
|
);
|
|
|
|
public $compareIdentical = true;
|
|
}
|