respect-validation/library/Rules/SubdivisionCode.php

53 lines
1.1 KiB
PHP
Raw Normal View History

2015-09-21 18:28:59 +02:00
<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
2015-09-21 18:28:59 +02:00
*/
declare(strict_types=1);
2015-09-21 18:28:59 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Helpers\CountryInfo;
use function array_keys;
2015-09-21 18:28:59 +02:00
/**
* Validates country subdivision codes according to ISO 3166-2.
*
* @see http://en.wikipedia.org/wiki/ISO_3166-2
* @see http://www.geonames.org/countries/
*
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Mazen Touati <mazen_touati@hotmail.com>
2015-09-21 18:28:59 +02:00
*/
final class SubdivisionCode extends AbstractSearcher
2015-09-21 18:28:59 +02:00
{
/**
* @var string
*/
private $countryName;
/**
* @var string[]
*/
private $countryInfo;
public function __construct(string $countryCode)
{
$countryInfo = new CountryInfo($countryCode);
$this->countryName = $countryInfo->getCountry();
$this->countryInfo = array_keys($countryInfo->getSubdivisions());
}
/**
* {@inheritDoc}
*/
protected function getDataSource(): array
2015-09-21 18:28:59 +02:00
{
return $this->countryInfo;
2015-09-21 18:28:59 +02:00
}
}