respect-validation/library/Rules/SubdivisionCode.php
Alexandre Gomes Gaigalas 727e7ccbfa Increase phpstan level from 7 to 8
- Fixed all phpstan errors and ignoreds.
 - False positives now have a "Why:" comment on phpstan config.
2023-02-19 00:19:10 -03:00

53 lines
1.1 KiB
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Helpers\Subdivisions;
use function array_keys;
/**
* 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>
*/
final class SubdivisionCode extends AbstractSearcher
{
/**
* @var string
*/
private $countryName;
/**
* @var string[]
*/
private $subdivisions;
public function __construct(string $countryCode)
{
$subdivisions = new Subdivisions($countryCode);
$this->countryName = $subdivisions->getCountry();
$this->subdivisions = array_keys($subdivisions->getSubdivisions());
}
/**
* {@inheritDoc}
*/
protected function getDataSource(): array
{
return $this->subdivisions;
}
}