respect-validation/library/Rules/SubdivisionCode/EtSubdivisionCode.php
2015-09-21 13:26:56 -03:00

40 lines
968 B
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 Ethiopia subdivision code.
*
* ISO 3166-1 alpha-2: ET
*
* @link http://www.geonames.org/ET/administrative-division-ethiopia.html
*/
class EtSubdivisionCode extends AbstractSearcher
{
public $haystack = array(
'AA', // Addis Ababa
'AF', // Afar
'AM', // Amhara
'BE', // Benishangul-Gumaz
'DD', // Dire Dawa
'GA', // Gambela
'HA', // Hariai
'OR', // Oromia
'SN', // Southern Nations - Nationalities and Peoples Region
'SO', // Somali
'TI', // Tigray
);
public $compareIdentical = true;
}