Remove exceptions from suvdivision code rules

The "SubdivisionCode" rule was refactored [1] and now it doesn't need
one rule per country.

This commit will also remove the exceptions that were supposed to be
removed before.

[1]: 718bacad04

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
Henrique Moody 2019-04-30 07:18:22 +02:00
parent b8508e989a
commit d58395626f
No known key found for this signature in database
GPG key ID: 221E9281655813A6
252 changed files with 0 additions and 9576 deletions

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Andorra.
*
* ISO 3166-1 alpha-2: AD
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AdSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Andorra',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Andorra',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of United Arab Emirates.
*
* ISO 3166-1 alpha-2: AE
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AeSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of United Arab Emirates',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of United Arab Emirates',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Afghanistan.
*
* ISO 3166-1 alpha-2: AF
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AfSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Afghanistan',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Afghanistan',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Antigua and Barbuda.
*
* ISO 3166-1 alpha-2: AG
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AgSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Antigua and Barbuda',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Antigua and Barbuda',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Anguilla.
*
* ISO 3166-1 alpha-2: AI
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AiSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Anguilla',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Anguilla',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Albania.
*
* ISO 3166-1 alpha-2: AL
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AlSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Albania',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Albania',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Armenia.
*
* ISO 3166-1 alpha-2: AM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Armenia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Armenia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Netherlands Antilles.
*
* ISO 3166-1 alpha-2: AN
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AnSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Netherlands Antilles',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Netherlands Antilles',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Angola.
*
* ISO 3166-1 alpha-2: AO
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AoSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Angola',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Angola',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Antarctica.
*
* ISO 3166-1 alpha-2: AQ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AqSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Antarctica',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Antarctica',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Argentina.
*
* ISO 3166-1 alpha-2: AR
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class ArSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Argentina',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Argentina',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of American Samoa.
*
* ISO 3166-1 alpha-2: AS
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AsSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of American Samoa',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of American Samoa',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Austria.
*
* ISO 3166-1 alpha-2: AT
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AtSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Austria',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Austria',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Australia.
*
* ISO 3166-1 alpha-2: AU
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AuSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Australia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Australia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Aruba.
*
* ISO 3166-1 alpha-2: AW
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AwSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Aruba',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Aruba',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Åland.
*
* ISO 3166-1 alpha-2: AX
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AxSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Åland',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Åland',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Azerbaijan.
*
* ISO 3166-1 alpha-2: AZ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AzSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Azerbaijan',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Azerbaijan',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bosnia and Herzegovina.
*
* ISO 3166-1 alpha-2: BA
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BaSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bosnia and Herzegovina',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bosnia and Herzegovina',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Barbados.
*
* ISO 3166-1 alpha-2: BB
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BbSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Barbados',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Barbados',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bangladesh.
*
* ISO 3166-1 alpha-2: BD
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BdSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bangladesh',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bangladesh',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Belgium.
*
* ISO 3166-1 alpha-2: BE
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BeSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Belgium',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Belgium',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Burkina Faso.
*
* ISO 3166-1 alpha-2: BF
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BfSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Burkina Faso',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Burkina Faso',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bulgaria.
*
* ISO 3166-1 alpha-2: BG
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BgSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bulgaria',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bulgaria',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bahrain.
*
* ISO 3166-1 alpha-2: BH
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BhSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bahrain',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bahrain',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Burundi.
*
* ISO 3166-1 alpha-2: BI
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BiSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Burundi',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Burundi',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Benin.
*
* ISO 3166-1 alpha-2: BJ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BjSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Benin',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Benin',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Saint Barthélemy.
*
* ISO 3166-1 alpha-2: BL
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BlSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Saint Barthélemy',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Saint Barthélemy',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bermuda.
*
* ISO 3166-1 alpha-2: BM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bermuda',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bermuda',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Brunei.
*
* ISO 3166-1 alpha-2: BN
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BnSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Brunei',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Brunei',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bolivia.
*
* ISO 3166-1 alpha-2: BO
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BoSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bolivia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bolivia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bonaire.
*
* ISO 3166-1 alpha-2: BQ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BqSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bonaire',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bonaire',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Brazil.
*
* ISO 3166-1 alpha-2: BR
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BrSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Brazil',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Brazil',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bahamas.
*
* ISO 3166-1 alpha-2: BS
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BsSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bahamas',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bahamas',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bhutan.
*
* ISO 3166-1 alpha-2: BT
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BtSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bhutan',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bhutan',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Bouvet Island.
*
* ISO 3166-1 alpha-2: BV
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BvSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Bouvet Island',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Bouvet Island',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Botswana.
*
* ISO 3166-1 alpha-2: BW
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BwSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Botswana',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Botswana',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Belarus.
*
* ISO 3166-1 alpha-2: BY
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BySubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Belarus',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Belarus',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Belize.
*
* ISO 3166-1 alpha-2: BZ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class BzSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Belize',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Belize',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Canada.
*
* ISO 3166-1 alpha-2: CA
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CaSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Canada',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Canada',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Cocos [Keeling] Islands.
*
* ISO 3166-1 alpha-2: CC
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CcSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Cocos [Keeling] Islands',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Cocos [Keeling] Islands',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Democratic Republic of the Congo.
*
* ISO 3166-1 alpha-2: CD
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CdSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Democratic Republic of the Congo',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Democratic Republic of the Congo',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Central African Republic.
*
* ISO 3166-1 alpha-2: CF
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CfSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Central African Republic',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Central African Republic',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Republic of the Congo.
*
* ISO 3166-1 alpha-2: CG
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CgSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Republic of the Congo',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Republic of the Congo',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Switzerland.
*
* ISO 3166-1 alpha-2: CH
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class ChSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Switzerland',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Switzerland',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Ivory Coast.
*
* ISO 3166-1 alpha-2: CI
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CiSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Ivory Coast',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Ivory Coast',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Cook Islands.
*
* ISO 3166-1 alpha-2: CK
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CkSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Cook Islands',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Cook Islands',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Chile.
*
* ISO 3166-1 alpha-2: CL
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class ClSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Chile',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Chile',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Cameroon.
*
* ISO 3166-1 alpha-2: CM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Cameroon',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Cameroon',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of China.
*
* ISO 3166-1 alpha-2: CN
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CnSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of China',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of China',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Colombia.
*
* ISO 3166-1 alpha-2: CO
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CoSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Colombia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Colombia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Costa Rica.
*
* ISO 3166-1 alpha-2: CR
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CrSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Costa Rica',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Costa Rica',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Serbia And Montenegro.
*
* ISO 3166-1 alpha-2: CS
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CsSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Serbia And Montenegro',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Serbia And Montenegro',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Cuba.
*
* ISO 3166-1 alpha-2: CU
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CuSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Cuba',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Cuba',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Cape Verde.
*
* ISO 3166-1 alpha-2: CV
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CvSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Cape Verde',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Cape Verde',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Curacao.
*
* ISO 3166-1 alpha-2: CW
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CwSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Curacao',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Curacao',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Christmas Island.
*
* ISO 3166-1 alpha-2: CX
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CxSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Christmas Island',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Christmas Island',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Cyprus.
*
* ISO 3166-1 alpha-2: CY
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CySubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Cyprus',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Cyprus',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Czechia.
*
* ISO 3166-1 alpha-2: CZ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class CzSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Czechia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Czechia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Germany.
*
* ISO 3166-1 alpha-2: DE
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class DeSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Germany',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Germany',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Djibouti.
*
* ISO 3166-1 alpha-2: DJ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class DjSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Djibouti',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Djibouti',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Denmark.
*
* ISO 3166-1 alpha-2: DK
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class DkSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Denmark',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Denmark',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Dominica.
*
* ISO 3166-1 alpha-2: DM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class DmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Dominica',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Dominica',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Dominican Republic.
*
* ISO 3166-1 alpha-2: DO
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class DoSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Dominican Republic',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Dominican Republic',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Algeria.
*
* ISO 3166-1 alpha-2: DZ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class DzSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Algeria',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Algeria',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Ecuador.
*
* ISO 3166-1 alpha-2: EC
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class EcSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Ecuador',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Ecuador',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Estonia.
*
* ISO 3166-1 alpha-2: EE
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class EeSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Estonia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Estonia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Egypt.
*
* ISO 3166-1 alpha-2: EG
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class EgSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Egypt',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Egypt',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Western Sahara.
*
* ISO 3166-1 alpha-2: EH
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class EhSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Western Sahara',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Western Sahara',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Eritrea.
*
* ISO 3166-1 alpha-2: ER
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class ErSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Eritrea',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Eritrea',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Spain.
*
* ISO 3166-1 alpha-2: ES
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class EsSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Spain',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Spain',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Ethiopia.
*
* ISO 3166-1 alpha-2: ET
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class EtSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Ethiopia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Ethiopia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Finland.
*
* ISO 3166-1 alpha-2: FI
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FiSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Finland',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Finland',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Fiji.
*
* ISO 3166-1 alpha-2: FJ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FjSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Fiji',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Fiji',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Falkland Islands.
*
* ISO 3166-1 alpha-2: FK
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FkSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Falkland Islands',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Falkland Islands',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Micronesia.
*
* ISO 3166-1 alpha-2: FM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Micronesia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Micronesia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Faroe Islands.
*
* ISO 3166-1 alpha-2: FO
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FoSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Faroe Islands',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Faroe Islands',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of France.
*
* ISO 3166-1 alpha-2: FR
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FrSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of France',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of France',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Gabon.
*
* ISO 3166-1 alpha-2: GA
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GaSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Gabon',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Gabon',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of United Kingdom.
*
* ISO 3166-1 alpha-2: GB
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GbSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of United Kingdom',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of United Kingdom',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Grenada.
*
* ISO 3166-1 alpha-2: GD
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GdSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Grenada',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Grenada',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Georgia.
*
* ISO 3166-1 alpha-2: GE
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GeSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Georgia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Georgia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of French Guiana.
*
* ISO 3166-1 alpha-2: GF
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GfSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of French Guiana',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of French Guiana',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guernsey.
*
* ISO 3166-1 alpha-2: GG
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GgSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guernsey',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guernsey',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Ghana.
*
* ISO 3166-1 alpha-2: GH
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GhSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Ghana',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Ghana',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Gibraltar.
*
* ISO 3166-1 alpha-2: GI
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GiSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Gibraltar',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Gibraltar',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Greenland.
*
* ISO 3166-1 alpha-2: GL
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GlSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Greenland',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Greenland',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Gambia.
*
* ISO 3166-1 alpha-2: GM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Gambia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Gambia',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guinea.
*
* ISO 3166-1 alpha-2: GN
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GnSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guinea',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guinea',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guadeloupe.
*
* ISO 3166-1 alpha-2: GP
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GpSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guadeloupe',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guadeloupe',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Equatorial Guinea.
*
* ISO 3166-1 alpha-2: GQ
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GqSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Equatorial Guinea',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Equatorial Guinea',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Greece.
*
* ISO 3166-1 alpha-2: GR
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GrSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Greece',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Greece',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of South Georgia and the South Sandwich Islands.
*
* ISO 3166-1 alpha-2: GS
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GsSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of South Georgia and the South Sandwich Islands',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of South Georgia and the South Sandwich Islands',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guatemala.
*
* ISO 3166-1 alpha-2: GT
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GtSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guatemala',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guatemala',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guam.
*
* ISO 3166-1 alpha-2: GU
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GuSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guam',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guam',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guinea-Bissau.
*
* ISO 3166-1 alpha-2: GW
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GwSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guinea-Bissau',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guinea-Bissau',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Guyana.
*
* ISO 3166-1 alpha-2: GY
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class GySubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Guyana',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Guyana',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Hong Kong.
*
* ISO 3166-1 alpha-2: HK
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class HkSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Hong Kong',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Hong Kong',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Heard Island and McDonald Islands.
*
* ISO 3166-1 alpha-2: HM
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class HmSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Heard Island and McDonald Islands',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Heard Island and McDonald Islands',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Honduras.
*
* ISO 3166-1 alpha-2: HN
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class HnSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Honduras',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Honduras',
],
];
}

View file

@ -1,38 +0,0 @@
<?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\Exceptions\Locale;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for subdivision codes of Croatia.
*
* ISO 3166-1 alpha-2: HR
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class HrSubdivisionCodeException extends SubdivisionCodeException
{
/**
* {@inheritDoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a subdivision code of Croatia',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a subdivision code of Croatia',
],
];
}

Some files were not shown because too many files have changed in this diff Show more