diff options
Diffstat (limited to 'vendor/fisharebest/localization/src')
1605 files changed, 0 insertions, 40929 deletions
diff --git a/vendor/fisharebest/localization/src/Language/AbstractLanguage.php b/vendor/fisharebest/localization/src/Language/AbstractLanguage.php deleted file mode 100644 index f772bb72c2..0000000000 --- a/vendor/fisharebest/localization/src/Language/AbstractLanguage.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleUnknown; -use Fisharebest\Localization\Script\ScriptLatn; -use Fisharebest\Localization\Territory\Territory001; - -/** - * Class AbstractLanguage - Representation of a language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -abstract class AbstractLanguage -{ - public function defaultTerritory() - { - return new Territory001(); - } - - public function defaultScript() - { - return new ScriptLatn(); - } - - public function pluralRule() - { - return new PluralRuleUnknown(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAa.php b/vendor/fisharebest/localization/src/Language/LanguageAa.php deleted file mode 100644 index 426b242914..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAa.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryEt; - -/** - * Class LanguageAa - Representation of the Afar language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'aa'; - } - - public function defaultTerritory() - { - return new TerritoryEt(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAf.php b/vendor/fisharebest/localization/src/Language/LanguageAf.php deleted file mode 100644 index 4807c05af8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAf.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageAf - Representation of the Afrikaans language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAf extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'af'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAgq.php b/vendor/fisharebest/localization/src/Language/LanguageAgq.php deleted file mode 100644 index 5edc4c0c9a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAgq.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageAgq - Representation of the Aghem language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAgq extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'agq'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAk.php b/vendor/fisharebest/localization/src/Language/LanguageAk.php deleted file mode 100644 index 8691fc299e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAk.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryGh; - -/** - * Class LanguageAk - Representation of the Akan language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ak'; - } - - public function defaultTerritory() - { - return new TerritoryGh(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAm.php b/vendor/fisharebest/localization/src/Language/LanguageAm.php deleted file mode 100644 index 33f9f9ed24..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAm.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptEthi; -use Fisharebest\Localization\Territory\TerritoryEt; - -/** - * Class LanguageAm - Representation of the Amharic language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAm extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'am'; - } - - public function defaultScript() - { - return new ScriptEthi(); - } - - public function defaultTerritory() - { - return new TerritoryEt(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAng.php b/vendor/fisharebest/localization/src/Language/LanguageAng.php deleted file mode 100644 index cb154fd3e1..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAng.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryGb; - -/** - * Class LanguageEn - Representation of the Anglo-Saxon / Old-English language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAng extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ang'; - } - - public function defaultTerritory() - { - return new TerritoryGb(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAr.php b/vendor/fisharebest/localization/src/Language/LanguageAr.php deleted file mode 100644 index a5aa8af466..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule12; -use Fisharebest\Localization\Script\ScriptArab; - -/** - * Class LanguageAr - Representation of the Arabic language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ar'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function pluralRule() - { - return new PluralRule12(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageArs.php b/vendor/fisharebest/localization/src/Language/LanguageArs.php deleted file mode 100644 index f14288d8d2..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageArs.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritorySa; - -/** - * Class LanguageAr - Representation of the Najdi Arabic language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageArs extends LanguageAr -{ - public function code() - { - return 'ars'; - } - - public function defaultTerritory() - { - return new TerritorySa(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAs.php b/vendor/fisharebest/localization/src/Language/LanguageAs.php deleted file mode 100644 index 594a8a2c34..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAs.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptBeng; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageAs - Representation of the Assamese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'as'; - } - - public function defaultScript() - { - return new ScriptBeng(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAsa.php b/vendor/fisharebest/localization/src/Language/LanguageAsa.php deleted file mode 100644 index b77571c1a3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAsa.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageAsa - Representation of the Asu (Tanzania) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAsa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'asa'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAst.php b/vendor/fisharebest/localization/src/Language/LanguageAst.php deleted file mode 100644 index ca2a924110..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAst.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LanguageAst - Representation of the Asturian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAst extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ast'; - } - - public function defaultTerritory() - { - return new TerritoryEs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageAz.php b/vendor/fisharebest/localization/src/Language/LanguageAz.php deleted file mode 100644 index 599e2319b7..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageAz.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryIr; - -/** - * Class LanguageAz - Representation of the Azerbaijani language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageAz extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'az'; - } - - public function defaultTerritory() - { - return new TerritoryIr(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBas.php b/vendor/fisharebest/localization/src/Language/LanguageBas.php deleted file mode 100644 index a99d4a5e14..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBas.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageBas - Representation of the Basa (Cameroon) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBas extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bas'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBe.php b/vendor/fisharebest/localization/src/Language/LanguageBe.php deleted file mode 100644 index c7c45ea237..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBe.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule7; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryBy; - -/** - * Class LanguageBe - Representation of the Belarusian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'be'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryBy(); - } - - public function pluralRule() - { - return new PluralRule7(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBem.php b/vendor/fisharebest/localization/src/Language/LanguageBem.php deleted file mode 100644 index 0894d4149a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBem.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZm; - -/** - * Class LanguageBem - Representation of the Bemba (Zambia) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBem extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bem'; - } - - public function defaultTerritory() - { - return new TerritoryZm(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBez.php b/vendor/fisharebest/localization/src/Language/LanguageBez.php deleted file mode 100644 index b1c352c4eb..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBez.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageBez - Representation of the Bena (Tanzania) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBez extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bez'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBg.php b/vendor/fisharebest/localization/src/Language/LanguageBg.php deleted file mode 100644 index 6bf8f2d479..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBg.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryBg; - -/** - * Class LanguageBg - Representation of the Bulgarian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bg'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryBg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBh.php b/vendor/fisharebest/localization/src/Language/LanguageBh.php deleted file mode 100644 index 9f51918dcd..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBh.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptDeva; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageBh - Representation of the Bihari language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bh'; - } - - public function defaultScript() - { - return new ScriptDeva(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBm.php b/vendor/fisharebest/localization/src/Language/LanguageBm.php deleted file mode 100644 index f058a427bc..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBm.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryMl; - -/** - * Class LanguageBm - Representation of the Bambara language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBm extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bm'; - } - - public function defaultTerritory() - { - return new TerritoryMl(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBn.php b/vendor/fisharebest/localization/src/Language/LanguageBn.php deleted file mode 100644 index 4f33c57def..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBn.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptBeng; -use Fisharebest\Localization\Territory\TerritoryBd; - -/** - * Class LanguageBn - Representation of the Bengali language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bn'; - } - - public function defaultScript() - { - return new ScriptBeng(); - } - - public function defaultTerritory() - { - return new TerritoryBd(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBo.php b/vendor/fisharebest/localization/src/Language/LanguageBo.php deleted file mode 100644 index 7d0601e96e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryCn; - -/** - * Class LanguageBo - Representation of the Tibetan language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bo'; - } - - public function defaultTerritory() - { - return new TerritoryCn(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBr.php b/vendor/fisharebest/localization/src/Language/LanguageBr.php deleted file mode 100644 index 90cf08192a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryFr; - -/** - * Class LanguageBr - Representation of the Breton language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'br'; - } - - public function defaultTerritory() - { - return new TerritoryFr(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBrx.php b/vendor/fisharebest/localization/src/Language/LanguageBrx.php deleted file mode 100644 index f3c40f3e21..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBrx.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageBrx - Representation of the Bodo (India) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBrx extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'brx'; - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageBs.php b/vendor/fisharebest/localization/src/Language/LanguageBs.php deleted file mode 100644 index 45f98f2ada..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageBs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule7; -use Fisharebest\Localization\Territory\TerritoryBa; - -/** - * Class LanguageBs - Representation of the Bosnian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageBs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'bs'; - } - - public function defaultTerritory() - { - return new TerritoryBa(); - } - - public function pluralRule() - { - return new PluralRule7(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCa.php b/vendor/fisharebest/localization/src/Language/LanguageCa.php deleted file mode 100644 index 7a16086e4c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCa.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LanguageCa - Representation of the Catalan language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ca'; - } - - public function defaultTerritory() - { - return new TerritoryEs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCcp.php b/vendor/fisharebest/localization/src/Language/LanguageCcp.php deleted file mode 100644 index 0f7dc019b4..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCcp.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptCakm; -use Fisharebest\Localization\Territory\TerritoryBd; - -/** - * Class LanguageCgg - Representation of the Chakma language. - * - * @TODO Plural rules - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCcp extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ccp'; - } - - public function defaultTerritory() - { - return new TerritoryBd(); - } - - public function defaultScript() - { - return new ScriptCakm(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCe.php b/vendor/fisharebest/localization/src/Language/LanguageCe.php deleted file mode 100644 index 416c8e5ed1..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCe.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LanguageRu - Representation of the Russian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ce'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryRu(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCgg.php b/vendor/fisharebest/localization/src/Language/LanguageCgg.php deleted file mode 100644 index 4e3bcd7974..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCgg.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LanguageCgg - Representation of the Chiga language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCgg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'cgg'; - } - - public function defaultTerritory() - { - return new TerritoryUg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageChr.php b/vendor/fisharebest/localization/src/Language/LanguageChr.php deleted file mode 100644 index dc503b29d3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageChr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUs; - -/** - * Class LanguageChr - Representation of the Cherokee language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageChr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'chr'; - } - - public function defaultTerritory() - { - return new TerritoryUs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCkb.php b/vendor/fisharebest/localization/src/Language/LanguageCkb.php deleted file mode 100644 index 2a4cf3aed0..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCkb.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryIq; - -/** - * Class LanguageKu - Representation of the Kurdish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCkb extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ckb'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryIq(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCs.php b/vendor/fisharebest/localization/src/Language/LanguageCs.php deleted file mode 100644 index a27a58c33a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule8; -use Fisharebest\Localization\Territory\TerritoryCz; - -/** - * Class LanguageCs - Representation of the Czech language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'cs'; - } - - public function defaultTerritory() - { - return new TerritoryCz(); - } - - public function pluralRule() - { - return new PluralRule8(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCu.php b/vendor/fisharebest/localization/src/Language/LanguageCu.php deleted file mode 100644 index 5013d9de98..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCu.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LanguageCu - Representation of the Old Church Slavonic language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'cu'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryRu(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageCy.php b/vendor/fisharebest/localization/src/Language/LanguageCy.php deleted file mode 100644 index 4bb6c78081..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageCy.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleWelsh; -use Fisharebest\Localization\Territory\TerritoryGb; - -/** - * Class LanguageCy - Representation of the Welsh language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageCy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'cy'; - } - - public function defaultTerritory() - { - return new TerritoryGb(); - } - - public function pluralRule() - { - return new PluralRuleWelsh(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDa.php b/vendor/fisharebest/localization/src/Language/LanguageDa.php deleted file mode 100644 index 92cfa3a4a2..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDa.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryDk; - -/** - * Class LanguageDa - Representation of the Danish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'da'; - } - - public function defaultTerritory() - { - return new TerritoryDk(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDav.php b/vendor/fisharebest/localization/src/Language/LanguageDav.php deleted file mode 100644 index 01ebd3fc96..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDav.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageDav - Representation of the Taita language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDav extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dav'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDe.php b/vendor/fisharebest/localization/src/Language/LanguageDe.php deleted file mode 100644 index 7fa67d8923..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDe.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryDe; - -/** - * Class LanguageDe - Representation of the German language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'de'; - } - - public function defaultTerritory() - { - return new TerritoryDe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDje.php b/vendor/fisharebest/localization/src/Language/LanguageDje.php deleted file mode 100644 index 3cb5d8746f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDje.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryNe; - -/** - * Class LanguageDje - Representation of the Zarma language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDje extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dje'; - } - - public function defaultTerritory() - { - return new TerritoryNe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDsb.php b/vendor/fisharebest/localization/src/Language/LanguageDsb.php deleted file mode 100644 index 877c657ee7..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDsb.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule10; -use Fisharebest\Localization\Territory\TerritoryDe; - -/** - * Class LanguageDsb - Representation of the Lower Sorbian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDsb extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dsb'; - } - - public function defaultTerritory() - { - return new TerritoryDe(); - } - - public function pluralRule() - { - return new PluralRule10(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDua.php b/vendor/fisharebest/localization/src/Language/LanguageDua.php deleted file mode 100644 index 8c0a839e13..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDua.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageDua - Representation of the Duala language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDua extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dua'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDv.php b/vendor/fisharebest/localization/src/Language/LanguageDv.php deleted file mode 100644 index 9cad4af45a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDv.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptThaa; -use Fisharebest\Localization\Territory\TerritoryMv; - -/** - * Class LanguageDv - Representation of the Divehi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDv extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dv'; - } - - public function defaultScript() - { - return new ScriptThaa(); - } - - public function defaultTerritory() - { - return new TerritoryMv(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDyo.php b/vendor/fisharebest/localization/src/Language/LanguageDyo.php deleted file mode 100644 index 6b25aeaab4..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDyo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritorySn; - -/** - * Class LanguageDyo - Representation of the Jola-Fonyi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDyo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dyo'; - } - - public function defaultTerritory() - { - return new TerritorySn(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageDz.php b/vendor/fisharebest/localization/src/Language/LanguageDz.php deleted file mode 100644 index 49115ea9c7..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageDz.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptTibt; -use Fisharebest\Localization\Territory\TerritoryBt; - -/** - * Class LanguageDz - Representation of the Dzongkha language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageDz extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'dz'; - } - - public function defaultScript() - { - return new ScriptTibt(); - } - - public function defaultTerritory() - { - return new TerritoryBt(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEbu.php b/vendor/fisharebest/localization/src/Language/LanguageEbu.php deleted file mode 100644 index 863e6b7477..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEbu.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageEbu - Representation of the Embu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEbu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ebu'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEe.php b/vendor/fisharebest/localization/src/Language/LanguageEe.php deleted file mode 100644 index c89eddb089..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEe.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryGh; - -/** - * Class LanguageEe - Representation of the Ewe language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ee'; - } - - public function defaultTerritory() - { - return new TerritoryGh(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEl.php b/vendor/fisharebest/localization/src/Language/LanguageEl.php deleted file mode 100644 index eba4dbe1bf..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEl.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptGrek; -use Fisharebest\Localization\Territory\TerritoryGr; - -/** - * Class LanguageEl - Representation of the Modern Greek (1453-) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'el'; - } - - public function defaultScript() - { - return new ScriptGrek(); - } - - public function defaultTerritory() - { - return new TerritoryGr(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEn.php b/vendor/fisharebest/localization/src/Language/LanguageEn.php deleted file mode 100644 index 3f030151f5..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEn.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; - -/** - * Class LanguageEn - Representation of the English language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'en'; - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEo.php b/vendor/fisharebest/localization/src/Language/LanguageEo.php deleted file mode 100644 index 0bbb92a6b8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; - -/** - * Class LanguageEo - Representation of the Esperanto language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'eo'; - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEs.php b/vendor/fisharebest/localization/src/Language/LanguageEs.php deleted file mode 100644 index 1787030e55..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LanguageEs - Representation of the Spanish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'es'; - } - - public function defaultTerritory() - { - return new TerritoryEs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEt.php b/vendor/fisharebest/localization/src/Language/LanguageEt.php deleted file mode 100644 index f9e3376162..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEe; - -/** - * Class LanguageEt - Representation of the Estonian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'et'; - } - - public function defaultTerritory() - { - return new TerritoryEe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEu.php b/vendor/fisharebest/localization/src/Language/LanguageEu.php deleted file mode 100644 index f9f480375f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEu.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LanguageEu - Representation of the Basque language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'eu'; - } - - public function defaultTerritory() - { - return new TerritoryEs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageEwo.php b/vendor/fisharebest/localization/src/Language/LanguageEwo.php deleted file mode 100644 index a1290ec78b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageEwo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageEwo - Representation of the Ewondo language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageEwo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ewo'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFa.php b/vendor/fisharebest/localization/src/Language/LanguageFa.php deleted file mode 100644 index d6a8cbf024..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFa.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryIr; - -/** - * Class LanguageFa - Representation of the Persian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fa'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryIr(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFf.php b/vendor/fisharebest/localization/src/Language/LanguageFf.php deleted file mode 100644 index fbced2dc18..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFf.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritorySn; - -/** - * Class LanguageFf - Representation of the Fulah language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFf extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ff'; - } - - public function defaultTerritory() - { - return new TerritorySn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFi.php b/vendor/fisharebest/localization/src/Language/LanguageFi.php deleted file mode 100644 index e37ebbcdbb..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LanguageFi - Representation of the Finnish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fi'; - } - - public function defaultTerritory() - { - return new TerritoryFi(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFil.php b/vendor/fisharebest/localization/src/Language/LanguageFil.php deleted file mode 100644 index 1897ee1e60..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFil.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryPh; - -/** - * Class LanguageFil - Representation of the Filipino language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFil extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fil'; - } - - public function defaultTerritory() - { - return new TerritoryPh(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFo.php b/vendor/fisharebest/localization/src/Language/LanguageFo.php deleted file mode 100644 index 6959db65a9..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryFo; - -/** - * Class LanguageFo - Representation of the Faroese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fo'; - } - - public function defaultTerritory() - { - return new TerritoryFo(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFr.php b/vendor/fisharebest/localization/src/Language/LanguageFr.php deleted file mode 100644 index 8bd93e2404..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryFr; - -/** - * Class LanguageFr - Representation of the French language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fr'; - } - - public function defaultTerritory() - { - return new TerritoryFr(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFur.php b/vendor/fisharebest/localization/src/Language/LanguageFur.php deleted file mode 100644 index a79dd9af77..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFur.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryIt; - -/** - * Class LanguageFur - Representation of the Friulian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFur extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fur'; - } - - public function defaultTerritory() - { - return new TerritoryIt(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageFy.php b/vendor/fisharebest/localization/src/Language/LanguageFy.php deleted file mode 100644 index 683d23fd1c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageFy.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNl; - -/** - * Class LanguageFy - Representation of the Western Frisian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageFy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'fy'; - } - - public function defaultTerritory() - { - return new TerritoryNl(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGa.php b/vendor/fisharebest/localization/src/Language/LanguageGa.php deleted file mode 100644 index 89d3561dca..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGa.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule11; -use Fisharebest\Localization\Territory\TerritoryIe; - -/** - * Class LanguageGa - Representation of the Irish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ga'; - } - - public function defaultTerritory() - { - return new TerritoryIe(); - } - - public function pluralRule() - { - return new PluralRule11(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGd.php b/vendor/fisharebest/localization/src/Language/LanguageGd.php deleted file mode 100644 index 1be189db55..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGd.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule4; -use Fisharebest\Localization\Territory\TerritoryGb; - -/** - * Class LanguageGd - Representation of the Scottish Gaelic language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGd extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'gd'; - } - - public function defaultTerritory() - { - return new TerritoryGb(); - } - - public function pluralRule() - { - return new PluralRule4(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGl.php b/vendor/fisharebest/localization/src/Language/LanguageGl.php deleted file mode 100644 index 69259ca428..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGl.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LanguageGl - Representation of the Galician language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'gl'; - } - - public function defaultTerritory() - { - return new TerritoryEs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGsw.php b/vendor/fisharebest/localization/src/Language/LanguageGsw.php deleted file mode 100644 index 69ba138145..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGsw.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LanguageGsw - Representation of the Swiss German language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGsw extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'gsw'; - } - - public function defaultTerritory() - { - return new TerritoryCh(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGu.php b/vendor/fisharebest/localization/src/Language/LanguageGu.php deleted file mode 100644 index 25d48d4c85..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGu.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptGujr; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageGu - Representation of the Gujarati language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'gu'; - } - - public function defaultScript() - { - return new ScriptGujr(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGuw.php b/vendor/fisharebest/localization/src/Language/LanguageGuw.php deleted file mode 100644 index d54ff2bf6b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGuw.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryBj; - -/** - * Class LanguageGuw - Representation of the Gun language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGuw extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'guw'; - } - - public function defaultTerritory() - { - return new TerritoryBj(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGuz.php b/vendor/fisharebest/localization/src/Language/LanguageGuz.php deleted file mode 100644 index 8996820745..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGuz.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageGuz - Representation of the Gusii language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGuz extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'guz'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageGv.php b/vendor/fisharebest/localization/src/Language/LanguageGv.php deleted file mode 100644 index 239720bb1b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageGv.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleManx; -use Fisharebest\Localization\Territory\TerritoryIm; - -/** - * Class LanguageGv - Representation of the Manx language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageGv extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'gv'; - } - - public function defaultTerritory() - { - return new TerritoryIm(); - } - - public function pluralRule() - { - return new PluralRuleManx(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHa.php b/vendor/fisharebest/localization/src/Language/LanguageHa.php deleted file mode 100644 index 6ddb45cf6f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHa.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LanguageHa - Representation of the Hausa language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ha'; - } - - public function defaultTerritory() - { - return new TerritoryNg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHaw.php b/vendor/fisharebest/localization/src/Language/LanguageHaw.php deleted file mode 100644 index 68aa09154e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHaw.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUs; - -/** - * Class LanguageHaw - Representation of the Hawaiian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHaw extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'haw'; - } - - public function defaultTerritory() - { - return new TerritoryUs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHe.php b/vendor/fisharebest/localization/src/Language/LanguageHe.php deleted file mode 100644 index 855d1afee8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHe.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptHebr; -use Fisharebest\Localization\Territory\TerritoryIl; - -/** - * Class LanguageHe - Representation of the Hebrew language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'he'; - } - - public function defaultScript() - { - return new ScriptHebr(); - } - - public function defaultTerritory() - { - return new TerritoryIl(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHi.php b/vendor/fisharebest/localization/src/Language/LanguageHi.php deleted file mode 100644 index c6e83e229b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHi.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptDeva; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageHi - Representation of the Hindi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'hi'; - } - - public function defaultScript() - { - return new ScriptDeva(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHr.php b/vendor/fisharebest/localization/src/Language/LanguageHr.php deleted file mode 100644 index f4d581ae1e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule7; -use Fisharebest\Localization\Territory\TerritoryHr; - -/** - * Class LanguageHr - Representation of the Croatian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'hr'; - } - - public function defaultTerritory() - { - return new TerritoryHr(); - } - - public function pluralRule() - { - return new PluralRule7(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHsb.php b/vendor/fisharebest/localization/src/Language/LanguageHsb.php deleted file mode 100644 index db8bf259b0..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHsb.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule10; -use Fisharebest\Localization\Territory\TerritoryDe; - -/** - * Class LanguageHsb - Representation of the Upper Sorbian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHsb extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'hsb'; - } - - public function defaultTerritory() - { - return new TerritoryDe(); - } - - public function pluralRule() - { - return new PluralRule10(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHu.php b/vendor/fisharebest/localization/src/Language/LanguageHu.php deleted file mode 100644 index 215a561fa5..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHu.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryHu; - -/** - * Class LanguageHu - Representation of the Hungarian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'hu'; - } - - public function defaultTerritory() - { - return new TerritoryHu(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageHy.php b/vendor/fisharebest/localization/src/Language/LanguageHy.php deleted file mode 100644 index 8c0d231dee..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageHy.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptArmn; -use Fisharebest\Localization\Territory\TerritoryAm; - -/** - * Class LanguageHy - Representation of the Armenian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageHy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'hy'; - } - - public function defaultScript() - { - return new ScriptArmn(); - } - - public function defaultTerritory() - { - return new TerritoryAm(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIa.php b/vendor/fisharebest/localization/src/Language/LanguageIa.php deleted file mode 100644 index d90c5338bc..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIa.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; - -/** - * Class LanguageIa - Representation of the Interlingua (International Auxiliary AbstractLanguage language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ia'; - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageId.php b/vendor/fisharebest/localization/src/Language/LanguageId.php deleted file mode 100644 index 87ef69578e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageId.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryId; - -/** - * Class LanguageId - Representation of the Indonesian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageId extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'id'; - } - - public function defaultTerritory() - { - return new TerritoryId(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIg.php b/vendor/fisharebest/localization/src/Language/LanguageIg.php deleted file mode 100644 index b8dcf48c45..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIg.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LanguageIg - Representation of the Igbo language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ig'; - } - - public function defaultTerritory() - { - return new TerritoryNg(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIi.php b/vendor/fisharebest/localization/src/Language/LanguageIi.php deleted file mode 100644 index 8d3cfe22d6..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryCn; - -/** - * Class LanguageIi - Representation of the Sichuan Yi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ii'; - } - - public function defaultTerritory() - { - return new TerritoryCn(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageInterface.php b/vendor/fisharebest/localization/src/Language/LanguageInterface.php deleted file mode 100644 index 5cd8f2f5fc..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageInterface.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleInterface; -use Fisharebest\Localization\Script\ScriptInterface; -use Fisharebest\Localization\Territory\TerritoryInterface; - -/** - * Interface LanguageInterface - Representation of a language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -interface LanguageInterface -{ - /** - * The ISO639 code for this language. - * - * @return string - */ - public function code(); - - /** - * The default territory where this language is spoken, which would - * normally be omitted from an IETF language tag. - * For example, we would normally omit the JP subtag from ja-JP. - * - * @return TerritoryInterface - */ - public function defaultTerritory(); - - /** - * The default script used to write this language, which would - * normally be omitted from an IETF language tag. - * For example, we would normally omit the Latn subtag from en-Latn. - * - * @return ScriptInterface - */ - public function defaultScript(); - - /** - * Which plural rule is used in this locale? - * - * @return PluralRuleInterface - */ - public function pluralRule(); -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIo.php b/vendor/fisharebest/localization/src/Language/LanguageIo.php deleted file mode 100644 index bcfe1236f8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIo.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\Territory001; - -/** - * Class LanguageIo - Representation of the Ido language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'io'; - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIs.php b/vendor/fisharebest/localization/src/Language/LanguageIs.php deleted file mode 100644 index b563c0e045..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule15; -use Fisharebest\Localization\Territory\TerritoryIs; - -/** - * Class LanguageIs - Representation of the Icelandic language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'is'; - } - - public function defaultTerritory() - { - return new TerritoryIs(); - } - - public function pluralRule() - { - return new PluralRule15(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIt.php b/vendor/fisharebest/localization/src/Language/LanguageIt.php deleted file mode 100644 index 1d470b8b4b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryIt; - -/** - * Class LanguageIt - Representation of the Italian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'it'; - } - - public function defaultTerritory() - { - return new TerritoryIt(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageIu.php b/vendor/fisharebest/localization/src/Language/LanguageIu.php deleted file mode 100644 index b7f7da6c84..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageIu.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Script\ScriptCans; -use Fisharebest\Localization\Territory\TerritoryCa; - -/** - * Class LanguageEl - Representation of the Modern Greek (1453-) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageIu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'iu'; - } - - public function defaultScript() - { - return new ScriptCans(); - } - - public function defaultTerritory() - { - return new TerritoryCa(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageJa.php b/vendor/fisharebest/localization/src/Language/LanguageJa.php deleted file mode 100644 index 7e615b5e15..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageJa.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptJpan; -use Fisharebest\Localization\Territory\TerritoryJp; - -/** - * Class LanguageJa - Representation of the Japanese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageJa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ja'; - } - - public function defaultScript() - { - return new ScriptJpan(); - } - - public function defaultTerritory() - { - return new TerritoryJp(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageJbo.php b/vendor/fisharebest/localization/src/Language/LanguageJbo.php deleted file mode 100644 index d2fa76b1d5..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageJbo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; - -/** - * Class LanguageJbo - Representation of the Lojban language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageJbo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'jbo'; - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageJgo.php b/vendor/fisharebest/localization/src/Language/LanguageJgo.php deleted file mode 100644 index 5a39a407e5..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageJgo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageJgo - Representation of the Ngomba language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageJgo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'jgo'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageJmc.php b/vendor/fisharebest/localization/src/Language/LanguageJmc.php deleted file mode 100644 index d2dc2a4af6..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageJmc.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageJmc - Representation of the Machame language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageJmc extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'jmc'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageJv.php b/vendor/fisharebest/localization/src/Language/LanguageJv.php deleted file mode 100644 index 2a45cceff7..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageJv.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptJava; -use Fisharebest\Localization\Territory\TerritoryId; - -/** - * Class LanguageJv - Representation of the Javanese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageJv extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'jv'; - } - - public function defaultScript() - { - return new ScriptJava(); - } - - public function defaultTerritory() - { - return new TerritoryId(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKa.php b/vendor/fisharebest/localization/src/Language/LanguageKa.php deleted file mode 100644 index e4e4352386..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKa.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptGeor; -use Fisharebest\Localization\Territory\TerritoryGe; - -/** - * Class LanguageKa - Representation of the Georgian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ka'; - } - - public function defaultScript() - { - return new ScriptGeor(); - } - - public function defaultTerritory() - { - return new TerritoryGe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKab.php b/vendor/fisharebest/localization/src/Language/LanguageKab.php deleted file mode 100644 index 5de656189d..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKab.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryDz; - -/** - * Class LanguageKab - Representation of the Kabyle language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKab extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kab'; - } - - public function defaultTerritory() - { - return new TerritoryDz(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKaj.php b/vendor/fisharebest/localization/src/Language/LanguageKaj.php deleted file mode 100644 index 44a5955639..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKaj.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LanguageKcg - Representation of the Katab language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKaj extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kaj'; - } - - public function defaultTerritory() - { - return new TerritoryNg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKam.php b/vendor/fisharebest/localization/src/Language/LanguageKam.php deleted file mode 100644 index 9b2ab110e3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKam.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageKam - Representation of the Kamba (Kenya) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKam extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kam'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKcg.php b/vendor/fisharebest/localization/src/Language/LanguageKcg.php deleted file mode 100644 index eb5efd3ef3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKcg.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LanguageKcg - Representation of the Katab language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKcg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kcg'; - } - - public function defaultTerritory() - { - return new TerritoryNg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKde.php b/vendor/fisharebest/localization/src/Language/LanguageKde.php deleted file mode 100644 index 12697a818c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKde.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageKde - Representation of the Makonde language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKde extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kde'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKea.php b/vendor/fisharebest/localization/src/Language/LanguageKea.php deleted file mode 100644 index a2681fbe6b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKea.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryCv; - -/** - * Class LanguageKea - Representation of the Kabuverdianu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKea extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kea'; - } - - public function defaultTerritory() - { - return new TerritoryCv(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKhq.php b/vendor/fisharebest/localization/src/Language/LanguageKhq.php deleted file mode 100644 index ce6aab3a06..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKhq.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryMl; - -/** - * Class LanguageKhq - Representation of the Koyra Chiini Songhay language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKhq extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'khq'; - } - - public function defaultTerritory() - { - return new TerritoryMl(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKi.php b/vendor/fisharebest/localization/src/Language/LanguageKi.php deleted file mode 100644 index 835a47d8b9..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageKi - Representation of the Kikuyu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ki'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKk.php b/vendor/fisharebest/localization/src/Language/LanguageKk.php deleted file mode 100644 index a8dc07ca25..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKk.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryKz; - -/** - * Class LanguageKk - Representation of the Kazakh language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kk'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryKz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKkj.php b/vendor/fisharebest/localization/src/Language/LanguageKkj.php deleted file mode 100644 index 8a0700b8d6..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKkj.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageKkj - Representation of the Kako language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKkj extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kkj'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKl.php b/vendor/fisharebest/localization/src/Language/LanguageKl.php deleted file mode 100644 index 2749a7378f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKl.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryGl; - -/** - * Class LanguageKl - Representation of the Kalaallisut language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kl'; - } - - public function defaultTerritory() - { - return new TerritoryGl(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKln.php b/vendor/fisharebest/localization/src/Language/LanguageKln.php deleted file mode 100644 index 404e4a445a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKln.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageKln - Representation of the Kalenjin language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKln extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kln'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKm.php b/vendor/fisharebest/localization/src/Language/LanguageKm.php deleted file mode 100644 index 107f33d92c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKm.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptKhmr; -use Fisharebest\Localization\Territory\TerritoryKh; - -/** - * Class LanguageKm - Representation of the Central Khmer language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKm extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'km'; - } - - public function defaultScript() - { - return new ScriptKhmr(); - } - - public function defaultTerritory() - { - return new TerritoryKh(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKn.php b/vendor/fisharebest/localization/src/Language/LanguageKn.php deleted file mode 100644 index fd2cd605d1..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKn.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptKnda; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageKn - Representation of the Kannada language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kn'; - } - - public function defaultScript() - { - return new ScriptKnda(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKo.php b/vendor/fisharebest/localization/src/Language/LanguageKo.php deleted file mode 100644 index 800b3ba463..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKo.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptKore; -use Fisharebest\Localization\Territory\TerritoryKr; - -/** - * Class LanguageKo - Representation of the Korean language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ko'; - } - - public function defaultScript() - { - return new ScriptKore(); - } - - public function defaultTerritory() - { - return new TerritoryKr(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKok.php b/vendor/fisharebest/localization/src/Language/LanguageKok.php deleted file mode 100644 index 4a84a71189..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKok.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Script\ScriptDeva; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageKok - Representation of the Konkani language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKok extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kok'; - } - - public function defaultScript() - { - return new ScriptDeva(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKs.php b/vendor/fisharebest/localization/src/Language/LanguageKs.php deleted file mode 100644 index 619eebca91..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKs.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageKs - Representation of the Kashmiri language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ks'; - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKsb.php b/vendor/fisharebest/localization/src/Language/LanguageKsb.php deleted file mode 100644 index 2f4f70b05c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKsb.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageKsb - Representation of the Shambala language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKsb extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ksb'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKsf.php b/vendor/fisharebest/localization/src/Language/LanguageKsf.php deleted file mode 100644 index 161e49376e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKsf.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageKsf - Representation of the Bafia language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKsf extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ksf'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKsh.php b/vendor/fisharebest/localization/src/Language/LanguageKsh.php deleted file mode 100644 index 358fcea9b8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKsh.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleZeroOneOther; -use Fisharebest\Localization\Territory\TerritoryDe; - -/** - * Class LanguageKsh - Representation of the Kölsch language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKsh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ksh'; - } - - public function defaultTerritory() - { - return new TerritoryDe(); - } - - public function pluralRule() - { - return new PluralRuleZeroOneOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKu.php b/vendor/fisharebest/localization/src/Language/LanguageKu.php deleted file mode 100644 index 12f58e7bde..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKu.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTr; - -/** - * Class LanguageKu - Representation of the Kurdish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ku'; - } - - public function defaultTerritory() - { - return new TerritoryTr(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKw.php b/vendor/fisharebest/localization/src/Language/LanguageKw.php deleted file mode 100644 index 5e4e0a1c7e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKw.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleCornish; -use Fisharebest\Localization\Territory\TerritoryGb; - -/** - * Class LanguageKw - Representation of the Cornish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKw extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'kw'; - } - - public function defaultTerritory() - { - return new TerritoryGb(); - } - - public function pluralRule() - { - return new PluralRuleCornish(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageKy.php b/vendor/fisharebest/localization/src/Language/LanguageKy.php deleted file mode 100644 index bf1eb49205..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageKy.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryKg; - -/** - * Class LanguageKy - Representation of the Kirghiz language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageKy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ky'; - } - - public function defaultTerritory() - { - return new TerritoryKg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLag.php b/vendor/fisharebest/localization/src/Language/LanguageLag.php deleted file mode 100644 index 39cc73d799..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLag.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleZeroOneOther; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageLag - Representation of the Langi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLag extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lag'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRuleZeroOneOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLb.php b/vendor/fisharebest/localization/src/Language/LanguageLb.php deleted file mode 100644 index 97e3ccac61..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLb.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryLu; - -/** - * Class LanguageLb - Representation of the Luxembourgish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLb extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lb'; - } - - public function defaultTerritory() - { - return new TerritoryLu(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLg.php b/vendor/fisharebest/localization/src/Language/LanguageLg.php deleted file mode 100644 index 8f78977d68..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLg.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LanguageLg - Representation of the Ganda language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lg'; - } - - public function defaultTerritory() - { - return new TerritoryUg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLkt.php b/vendor/fisharebest/localization/src/Language/LanguageLkt.php deleted file mode 100644 index af0d5d8f2f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLkt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryUs; - -/** - * Class LanguageLkt - Representation of the Lakota language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLkt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lkt'; - } - - public function defaultTerritory() - { - return new TerritoryUs(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLn.php b/vendor/fisharebest/localization/src/Language/LanguageLn.php deleted file mode 100644 index 97e24c6ad6..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryCd; - -/** - * Class LanguageLn - Representation of the Lingala language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ln'; - } - - public function defaultTerritory() - { - return new TerritoryCd(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLo.php b/vendor/fisharebest/localization/src/Language/LanguageLo.php deleted file mode 100644 index 1293261cc8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLo.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptLaoo; -use Fisharebest\Localization\Territory\TerritoryLa; - -/** - * Class LanguageLo - Representation of the Lao language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lo'; - } - - public function defaultScript() - { - return new ScriptLaoo(); - } - - public function defaultTerritory() - { - return new TerritoryLa(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLrc.php b/vendor/fisharebest/localization/src/Language/LanguageLrc.php deleted file mode 100644 index af9ff9a00d..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLrc.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule12; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryIr; - -/** - * Class LanguageLrc - Representation of the Luri language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLrc extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lrc'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryIr(); - } - - public function pluralRule() - { - return new PluralRule12(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLt.php b/vendor/fisharebest/localization/src/Language/LanguageLt.php deleted file mode 100644 index d13964a9a9..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule6; -use Fisharebest\Localization\Territory\TerritoryLt; - -/** - * Class LanguageLt - Representation of the Lithuanian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lt'; - } - - public function defaultTerritory() - { - return new TerritoryLt(); - } - - public function pluralRule() - { - return new PluralRule6(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLu.php b/vendor/fisharebest/localization/src/Language/LanguageLu.php deleted file mode 100644 index 56b2f18290..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLu.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCd; - -/** - * Class LanguageLu - Representation of the Luba-Katanga language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lu'; - } - - public function defaultTerritory() - { - return new TerritoryCd(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLuo.php b/vendor/fisharebest/localization/src/Language/LanguageLuo.php deleted file mode 100644 index 256917f372..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLuo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageLuo - Representation of the Luo (Kenya and Tanzania) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLuo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'luo'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLuy.php b/vendor/fisharebest/localization/src/Language/LanguageLuy.php deleted file mode 100644 index 77c2d67042..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLuy.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageLuy - Representation of the Luyia language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLuy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'luy'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageLv.php b/vendor/fisharebest/localization/src/Language/LanguageLv.php deleted file mode 100644 index 647155e961..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageLv.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule3; -use Fisharebest\Localization\Territory\TerritoryLv; - -/** - * Class LanguageLv - Representation of the Latvian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageLv extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'lv'; - } - - public function defaultTerritory() - { - return new TerritoryLv(); - } - - public function pluralRule() - { - return new PluralRule3(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMas.php b/vendor/fisharebest/localization/src/Language/LanguageMas.php deleted file mode 100644 index bc16a1e33c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMas.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageMas - Representation of the Masai language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMas extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mas'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMer.php b/vendor/fisharebest/localization/src/Language/LanguageMer.php deleted file mode 100644 index 63f958d8f9..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMer.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageMer - Representation of the Meru language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMer extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mer'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMfe.php b/vendor/fisharebest/localization/src/Language/LanguageMfe.php deleted file mode 100644 index 774f78064e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMfe.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryMu; - -/** - * Class LanguageMfe - Representation of the Morisyen language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMfe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mfe'; - } - - public function defaultTerritory() - { - return new TerritoryMu(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMg.php b/vendor/fisharebest/localization/src/Language/LanguageMg.php deleted file mode 100644 index 913dc29e2a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMg.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryMg; - -/** - * Class LanguageMg - Representation of the Malagasy language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mg'; - } - - public function defaultTerritory() - { - return new TerritoryMg(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMgh.php b/vendor/fisharebest/localization/src/Language/LanguageMgh.php deleted file mode 100644 index 5190e5d62f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMgh.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryMz; - -/** - * Class LanguageMgh - Representation of the Makhuwa-Meetto language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMgh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mgh'; - } - - public function defaultTerritory() - { - return new TerritoryMz(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMgo.php b/vendor/fisharebest/localization/src/Language/LanguageMgo.php deleted file mode 100644 index a9129c967b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMgo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageMgo - Representation of the Meta' language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMgo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mgo'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMi.php b/vendor/fisharebest/localization/src/Language/LanguageMi.php deleted file mode 100644 index 168f287042..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryNz; - -/** - * Class LanguageEn - Representation of the Maori language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mi'; - } - - public function defaultTerritory() - { - return new TerritoryNz(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMk.php b/vendor/fisharebest/localization/src/Language/LanguageMk.php deleted file mode 100644 index 7b985b8f69..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMk.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule15; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryMk; - -/** - * Class LanguageMk - Representation of the Macedonian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mk'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryMk(); - } - - public function pluralRule() - { - return new PluralRule15(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMl.php b/vendor/fisharebest/localization/src/Language/LanguageMl.php deleted file mode 100644 index 3c0212f131..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMl.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptMlym; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageMl - Representation of the Malayalam language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ml'; - } - - public function defaultScript() - { - return new ScriptMlym(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMn.php b/vendor/fisharebest/localization/src/Language/LanguageMn.php deleted file mode 100644 index b1b8bffc7b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryMn; - -/** - * Class LanguageMn - Representation of the Mongolian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mn'; - } - - public function defaultTerritory() - { - return new TerritoryMn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMo.php b/vendor/fisharebest/localization/src/Language/LanguageMo.php deleted file mode 100644 index 8cf740a9e0..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule5; -use Fisharebest\Localization\Territory\TerritoryMd; - -/** - * Class LanguageIt - Representation of the Italian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mo'; - } - - public function defaultTerritory() - { - return new TerritoryMd(); - } - - public function pluralRule() - { - return new PluralRule5(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMr.php b/vendor/fisharebest/localization/src/Language/LanguageMr.php deleted file mode 100644 index 8b43fe166b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMr.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptDeva; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageMr - Representation of the Marathi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mr'; - } - - public function defaultScript() - { - return new ScriptDeva(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMs.php b/vendor/fisharebest/localization/src/Language/LanguageMs.php deleted file mode 100644 index 32ebf4468a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryMy; - -/** - * Class LanguageMs - Representation of the Malay language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ms'; - } - - public function defaultTerritory() - { - return new TerritoryMy(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMt.php b/vendor/fisharebest/localization/src/Language/LanguageMt.php deleted file mode 100644 index 05053fbb90..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule13; -use Fisharebest\Localization\Territory\TerritoryMt; - -/** - * Class LanguageMt - Representation of the Maltese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mt'; - } - - public function defaultTerritory() - { - return new TerritoryMt(); - } - - public function pluralRule() - { - return new PluralRule13(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMua.php b/vendor/fisharebest/localization/src/Language/LanguageMua.php deleted file mode 100644 index ca32f4a7f9..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMua.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageMua - Representation of the Mundang language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMua extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mua'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMy.php b/vendor/fisharebest/localization/src/Language/LanguageMy.php deleted file mode 100644 index 719c84a787..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMy.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptMymr; -use Fisharebest\Localization\Territory\TerritoryMm; - -/** - * Class LanguageMy - Representation of the Burmese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'my'; - } - - public function defaultScript() - { - return new ScriptMymr(); - } - - public function defaultTerritory() - { - return new TerritoryMm(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageMzn.php b/vendor/fisharebest/localization/src/Language/LanguageMzn.php deleted file mode 100644 index 73050aca6a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageMzn.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule12; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryIr; - -/** - * Class LanguageMzn - Representation of the Mazanderani language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageMzn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'mzn'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryIr(); - } - - public function pluralRule() - { - return new PluralRule12(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNah.php b/vendor/fisharebest/localization/src/Language/LanguageNah.php deleted file mode 100644 index e27db92089..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNah.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryMx; - -/** - * Class LanguageNah - Representation of the Nahuatl language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNah extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nah'; - } - - public function defaultTerritory() - { - return new TerritoryMx(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNaq.php b/vendor/fisharebest/localization/src/Language/LanguageNaq.php deleted file mode 100644 index 854659b82a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNaq.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Territory\TerritoryNa; - -/** - * Class LanguageNaq - Representation of the Nama (Namibia) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNaq extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'naq'; - } - - public function defaultTerritory() - { - return new TerritoryNa(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNb.php b/vendor/fisharebest/localization/src/Language/LanguageNb.php deleted file mode 100644 index 2a25b848b3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNb.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNo; - -/** - * Class LanguageNb - Representation of the Norwegian Bokmål language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNb extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nb'; - } - - public function defaultTerritory() - { - return new TerritoryNo(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNd.php b/vendor/fisharebest/localization/src/Language/LanguageNd.php deleted file mode 100644 index 6f1f7611bb..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNd.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZw; - -/** - * Class LanguageNd - Representation of the North Ndebele language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNd extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nd'; - } - - public function defaultTerritory() - { - return new TerritoryZw(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNds.php b/vendor/fisharebest/localization/src/Language/LanguageNds.php deleted file mode 100644 index 4fb7ce16e7..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNds.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryDe; - -/** - * Class LanguageNds - Representation of the Low German language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNds extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nds'; - } - - public function defaultTerritory() - { - return new TerritoryDe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNe.php b/vendor/fisharebest/localization/src/Language/LanguageNe.php deleted file mode 100644 index ca744d7648..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNe.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptDeva; -use Fisharebest\Localization\Territory\TerritoryNp; - -/** - * Class LanguageNe - Representation of the Nepali language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ne'; - } - - public function defaultScript() - { - return new ScriptDeva(); - } - - public function defaultTerritory() - { - return new TerritoryNp(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNl.php b/vendor/fisharebest/localization/src/Language/LanguageNl.php deleted file mode 100644 index e925fe7130..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNl.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNl; - -/** - * Class LanguageNl - Representation of the Dutch language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nl'; - } - - public function defaultTerritory() - { - return new TerritoryNl(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNmg.php b/vendor/fisharebest/localization/src/Language/LanguageNmg.php deleted file mode 100644 index e36860a47e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNmg.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageNmg - Representation of the Kwasio language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNmg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nmg'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNn.php b/vendor/fisharebest/localization/src/Language/LanguageNn.php deleted file mode 100644 index 6036995c62..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNo; - -/** - * Class LanguageNn - Representation of the Norwegian Nynorsk language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nn'; - } - - public function defaultTerritory() - { - return new TerritoryNo(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNnh.php b/vendor/fisharebest/localization/src/Language/LanguageNnh.php deleted file mode 100644 index ec212d956e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNnh.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageNnh - Representation of the Ngiemboon language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNnh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nnh'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNqo.php b/vendor/fisharebest/localization/src/Language/LanguageNqo.php deleted file mode 100644 index e9e831324b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNqo.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptNkoo; -use Fisharebest\Localization\Territory\TerritoryGn; - -/** - * Class LanguageNqo - Representation of the N’Ko language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNqo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nqo'; - } - - public function defaultScript() - { - return new ScriptNkoo(); - } - - public function defaultTerritory() - { - return new TerritoryGn(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNr.php b/vendor/fisharebest/localization/src/Language/LanguageNr.php deleted file mode 100644 index 5903c1b68b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageNr - Representation of the South Ndebele language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nr'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNso.php b/vendor/fisharebest/localization/src/Language/LanguageNso.php deleted file mode 100644 index 406f639e35..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNso.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageNso - Representation of the Pedi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNso extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nso'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNus.php b/vendor/fisharebest/localization/src/Language/LanguageNus.php deleted file mode 100644 index 4b811ee26a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNus.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritorySd; - -/** - * Class LanguageNus - Representation of the Nuer language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNus extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nus'; - } - - public function defaultTerritory() - { - return new TerritorySd(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNy.php b/vendor/fisharebest/localization/src/Language/LanguageNy.php deleted file mode 100644 index 79dd278385..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNy.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryMw; - -/** - * Class LanguageNy - Representation of the Chewa language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ny'; - } - - public function defaultTerritory() - { - return new TerritoryMw(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageNyn.php b/vendor/fisharebest/localization/src/Language/LanguageNyn.php deleted file mode 100644 index 51ae42f50d..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageNyn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LanguageNyn - Representation of the Nyankole language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageNyn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'nyn'; - } - - public function defaultTerritory() - { - return new TerritoryUg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageOc.php b/vendor/fisharebest/localization/src/Language/LanguageOc.php deleted file mode 100644 index 0cb5d56ef3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageOc.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryFr; - -/** - * Class LanguageOc - Representation of the Occitan language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageOc extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'oc'; - } - - public function defaultTerritory() - { - return new TerritoryFr(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageOm.php b/vendor/fisharebest/localization/src/Language/LanguageOm.php deleted file mode 100644 index 95cd8a06d8..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageOm.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEt; - -/** - * Class LanguageOm - Representation of the Oromo language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageOm extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'om'; - } - - public function defaultTerritory() - { - return new TerritoryEt(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageOr.php b/vendor/fisharebest/localization/src/Language/LanguageOr.php deleted file mode 100644 index 1efe128a53..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageOr.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptOrya; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageOr - Representation of the Oriya language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageOr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'or'; - } - - public function defaultScript() - { - return new ScriptOrya(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageOs.php b/vendor/fisharebest/localization/src/Language/LanguageOs.php deleted file mode 100644 index 218c7bf3fe..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageOs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LanguageOs - Representation of the Ossetian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageOs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'os'; - } - - public function defaultTerritory() - { - return new TerritoryRu(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguagePa.php b/vendor/fisharebest/localization/src/Language/LanguagePa.php deleted file mode 100644 index 18105a1ffa..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguagePa.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptGuru; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguagePa - Representation of the Panjabi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguagePa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'pa'; - } - - public function defaultScript() - { - return new ScriptGuru(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguagePap.php b/vendor/fisharebest/localization/src/Language/LanguagePap.php deleted file mode 100644 index ab17abb845..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguagePap.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\Territory029; - -/** - * Class LanguagePap - Representation of the Papiamentu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguagePap extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'pap'; - } - - public function defaultTerritory() - { - return new Territory029(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguagePl.php b/vendor/fisharebest/localization/src/Language/LanguagePl.php deleted file mode 100644 index e8999fbd66..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguagePl.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule9; -use Fisharebest\Localization\Territory\TerritoryPl; - -/** - * Class LanguagePl - Representation of the Polish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguagePl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'pl'; - } - - public function defaultTerritory() - { - return new TerritoryPl(); - } - - public function pluralRule() - { - return new PluralRule9(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguagePrg.php b/vendor/fisharebest/localization/src/Language/LanguagePrg.php deleted file mode 100644 index 6d87a9a46c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguagePrg.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule3; -use Fisharebest\Localization\Territory\Territory001; - -/** - * Class LanguagePrg - Representation of the Old Prussian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguagePrg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'prg'; - } - - public function pluralRule() - { - return new PluralRule3(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguagePs.php b/vendor/fisharebest/localization/src/Language/LanguagePs.php deleted file mode 100644 index 1c46d6b1e4..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguagePs.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryPk; - -/** - * Class LanguagePs - Representation of the Pushto language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguagePs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ps'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryPk(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguagePt.php b/vendor/fisharebest/localization/src/Language/LanguagePt.php deleted file mode 100644 index 653bd10e38..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguagePt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryPt; - -/** - * Class LanguagePt - Representation of the Portuguese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguagePt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'pt'; - } - - public function defaultTerritory() - { - return new TerritoryPt(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageQu.php b/vendor/fisharebest/localization/src/Language/LanguageQu.php deleted file mode 100644 index f32477a403..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageQu.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryPe; - -/** - * Class LanguageQu - Representation of the Quechua language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageQu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'qu'; - } - - public function defaultTerritory() - { - return new TerritoryPe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRm.php b/vendor/fisharebest/localization/src/Language/LanguageRm.php deleted file mode 100644 index 2b2d1af9ce..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRm.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LanguageRm - Representation of the Romansh language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRm extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'rm'; - } - - public function defaultTerritory() - { - return new TerritoryCh(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRn.php b/vendor/fisharebest/localization/src/Language/LanguageRn.php deleted file mode 100644 index 0f94012e8e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRn.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryBi; - -/** - * Class LanguageRn - Representation of the Rundi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'rn'; - } - - public function defaultTerritory() - { - return new TerritoryBi(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRo.php b/vendor/fisharebest/localization/src/Language/LanguageRo.php deleted file mode 100644 index 96d33ec461..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule5; -use Fisharebest\Localization\Territory\TerritoryRo; - -/** - * Class LanguageRo - Representation of the Romanian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ro'; - } - - public function defaultTerritory() - { - return new TerritoryRo(); - } - - public function pluralRule() - { - return new PluralRule5(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRof.php b/vendor/fisharebest/localization/src/Language/LanguageRof.php deleted file mode 100644 index 468d71d065..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRof.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageRof - Representation of the Rombo language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRof extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'rof'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRu.php b/vendor/fisharebest/localization/src/Language/LanguageRu.php deleted file mode 100644 index 91e8e08d57..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRu.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule7; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LanguageRu - Representation of the Russian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ru'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryRu(); - } - - public function pluralRule() - { - return new PluralRule7(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRw.php b/vendor/fisharebest/localization/src/Language/LanguageRw.php deleted file mode 100644 index 6c91490277..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRw.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryRw; - -/** - * Class LanguageRw - Representation of the Kinyarwanda language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRw extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'rw'; - } - - public function defaultTerritory() - { - return new TerritoryRw(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageRwk.php b/vendor/fisharebest/localization/src/Language/LanguageRwk.php deleted file mode 100644 index 9bc9d2f4b7..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageRwk.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageRwk - Representation of the Rwa language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageRwk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'rwk'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSah.php b/vendor/fisharebest/localization/src/Language/LanguageSah.php deleted file mode 100644 index f75ce98d61..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSah.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LanguageSah - Representation of the Yakut language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSah extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sah'; - } - - public function defaultTerritory() - { - return new TerritoryRu(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSaq.php b/vendor/fisharebest/localization/src/Language/LanguageSaq.php deleted file mode 100644 index 861677e40e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSaq.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LanguageSaq - Representation of the Samburu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSaq extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'saq'; - } - - public function defaultTerritory() - { - return new TerritoryKe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSbp.php b/vendor/fisharebest/localization/src/Language/LanguageSbp.php deleted file mode 100644 index c6772a631d..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSbp.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageSbp - Representation of the Sangu (Tanzania) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSbp extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sbp'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageScn.php b/vendor/fisharebest/localization/src/Language/LanguageScn.php deleted file mode 100644 index bc3cb10267..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageScn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryIt; - -/** - * Class LanguageScn - Representation of the Sicilian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageScn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'scn'; - } - - public function defaultTerritory() - { - return new TerritoryIt(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSd.php b/vendor/fisharebest/localization/src/Language/LanguageSd.php deleted file mode 100644 index 209bb53f07..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSd.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryPk; - -/** - * Class LanguageSd - Representation of the Sindhi language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSd extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sd'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryPk(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSe.php b/vendor/fisharebest/localization/src/Language/LanguageSe.php deleted file mode 100644 index 9f7b26f77a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSe.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryNo; - -/** - * Class LanguageSe - Representation of the Northern Sami language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'se'; - } - - public function defaultTerritory() - { - return new TerritoryNo(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSeh.php b/vendor/fisharebest/localization/src/Language/LanguageSeh.php deleted file mode 100644 index 23e664a2fb..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSeh.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryMz; - -/** - * Class LanguageSeh - Representation of the Sena language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSeh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'seh'; - } - - public function defaultTerritory() - { - return new TerritoryMz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSes.php b/vendor/fisharebest/localization/src/Language/LanguageSes.php deleted file mode 100644 index f1b8698dab..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSes.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryMl; - -/** - * Class LanguageSes - Representation of the Koyraboro Senni Songhai language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSes extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ses'; - } - - public function defaultTerritory() - { - return new TerritoryMl(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSg.php b/vendor/fisharebest/localization/src/Language/LanguageSg.php deleted file mode 100644 index 53ba1e8577..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSg.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryCf; - -/** - * Class LanguageSg - Representation of the Sango language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sg'; - } - - public function defaultTerritory() - { - return new TerritoryCf(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageShi.php b/vendor/fisharebest/localization/src/Language/LanguageShi.php deleted file mode 100644 index b612e8e38a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageShi.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleTachelhit; -use Fisharebest\Localization\Script\ScriptTfng; -use Fisharebest\Localization\Territory\TerritoryMa; - -/** - * Class LanguageShi - Representation of the Tachelhit language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageShi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'shi'; - } - - public function defaultScript() - { - return new ScriptTfng(); - } - - public function defaultTerritory() - { - return new TerritoryMa(); - } - - public function pluralRule() - { - return new PluralRuleTachelhit(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSi.php b/vendor/fisharebest/localization/src/Language/LanguageSi.php deleted file mode 100644 index 8c7568f7c0..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSi.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptSinh; -use Fisharebest\Localization\Territory\TerritoryLk; - -/** - * Class LanguageSi - Representation of the Sinhala language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'si'; - } - - public function defaultScript() - { - return new ScriptSinh(); - } - - public function defaultTerritory() - { - return new TerritoryLk(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSk.php b/vendor/fisharebest/localization/src/Language/LanguageSk.php deleted file mode 100644 index 2c58dbad3b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSk.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule8; -use Fisharebest\Localization\Territory\TerritorySk; - -/** - * Class LanguageSk - Representation of the Slovak language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sk'; - } - - public function defaultTerritory() - { - return new TerritorySk(); - } - - public function pluralRule() - { - return new PluralRule8(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSl.php b/vendor/fisharebest/localization/src/Language/LanguageSl.php deleted file mode 100644 index c65559a15f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSl.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule10; -use Fisharebest\Localization\Territory\TerritorySi; - -/** - * Class LanguageSl - Representation of the Slovenian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sl'; - } - - public function defaultTerritory() - { - return new TerritorySi(); - } - - public function pluralRule() - { - return new PluralRule10(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSma.php b/vendor/fisharebest/localization/src/Language/LanguageSma.php deleted file mode 100644 index 0765e07a48..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSma.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LanguageSma - Representation of the Southern Sami language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSma extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sma'; - } - - public function defaultTerritory() - { - return new TerritoryFi(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSmi.php b/vendor/fisharebest/localization/src/Language/LanguageSmi.php deleted file mode 100644 index 38d43d24fd..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSmi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LanguageSmi - Representation of the Sami language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSmi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'smi'; - } - - public function defaultTerritory() - { - return new TerritoryFi(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSmj.php b/vendor/fisharebest/localization/src/Language/LanguageSmj.php deleted file mode 100644 index 2e1fd3e600..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSmj.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Territory\TerritorySe; - -/** - * Class LanguageSms - Representation of the Lule Sami language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSmj extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'smj'; - } - - public function defaultTerritory() - { - return new TerritorySe(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSmn.php b/vendor/fisharebest/localization/src/Language/LanguageSmn.php deleted file mode 100644 index f1d713931b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSmn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LanguageSmn - Representation of the Inari Sami language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSmn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'smn'; - } - - public function defaultTerritory() - { - return new TerritoryFi(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSms.php b/vendor/fisharebest/localization/src/Language/LanguageSms.php deleted file mode 100644 index 46eff15221..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSms.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleOneTwoOther; -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LanguageSms - Representation of the Skolt Sami language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSms extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sms'; - } - - public function defaultTerritory() - { - return new TerritoryFi(); - } - - public function pluralRule() - { - return new PluralRuleOneTwoOther(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSn.php b/vendor/fisharebest/localization/src/Language/LanguageSn.php deleted file mode 100644 index fd8227889f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZw; - -/** - * Class LanguageSn - Representation of the Shona language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sn'; - } - - public function defaultTerritory() - { - return new TerritoryZw(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSo.php b/vendor/fisharebest/localization/src/Language/LanguageSo.php deleted file mode 100644 index 2a7aae56ae..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritorySo; - -/** - * Class LanguageSo - Representation of the Somali language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'so'; - } - - public function defaultTerritory() - { - return new TerritorySo(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSq.php b/vendor/fisharebest/localization/src/Language/LanguageSq.php deleted file mode 100644 index 35ba014160..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSq.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryAl; - -/** - * Class LanguageSq - Representation of the Albanian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSq extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sq'; - } - - public function defaultTerritory() - { - return new TerritoryAl(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSr.php b/vendor/fisharebest/localization/src/Language/LanguageSr.php deleted file mode 100644 index 0a4d61c961..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSr.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule7; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryRs; - -/** - * Class LanguageSr - Representation of the Serbian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sr'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryRs(); - } - - public function pluralRule() - { - return new PluralRule7(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSs.php b/vendor/fisharebest/localization/src/Language/LanguageSs.php deleted file mode 100644 index a9b6e8205f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritorySz; - -/** - * Class LanguageSs - Representation of the Swati language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ss'; - } - - public function defaultTerritory() - { - return new TerritorySz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSsy.php b/vendor/fisharebest/localization/src/Language/LanguageSsy.php deleted file mode 100644 index 74c9251f6c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSsy.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryEr; - -/** - * Class LanguageSsy - Representation of the Saho language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSsy extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ssy'; - } - - public function defaultTerritory() - { - return new TerritoryEr(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSt.php b/vendor/fisharebest/localization/src/Language/LanguageSt.php deleted file mode 100644 index e78830b067..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSt.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryLs; - -/** - * Class LanguageEn - Representation of the Sotho language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'st'; - } - - public function defaultTerritory() - { - return new TerritoryLs(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSu.php b/vendor/fisharebest/localization/src/Language/LanguageSu.php deleted file mode 100644 index 42f1d16178..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSu.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptSund; -use Fisharebest\Localization\Territory\TerritoryId; - -/** - * Class LanguageSu - Representation of the Sotho language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'su'; - } - - public function defaultScript() - { - return new ScriptSund(); - } - - public function defaultTerritory() - { - return new TerritoryId(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSv.php b/vendor/fisharebest/localization/src/Language/LanguageSv.php deleted file mode 100644 index fc14d20aec..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSv.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritorySe; - -/** - * Class LanguageSv - Representation of the Swedish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSv extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sv'; - } - - public function defaultTerritory() - { - return new TerritorySe(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSw.php b/vendor/fisharebest/localization/src/Language/LanguageSw.php deleted file mode 100644 index 4e7ab935ea..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSw.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageSw - Representation of the Swahili language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSw extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'sw'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSwc.php b/vendor/fisharebest/localization/src/Language/LanguageSwc.php deleted file mode 100644 index 8b4054620e..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSwc.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCd; - -/** - * Class LanguageSwc - Representation of the Congo Swahili language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSwc extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'swc'; - } - - public function defaultTerritory() - { - return new TerritoryCd(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageSyr.php b/vendor/fisharebest/localization/src/Language/LanguageSyr.php deleted file mode 100644 index 7c792387e0..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageSyr.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptSyrc; -use Fisharebest\Localization\Territory\TerritoryIq; - -/** - * Class LanguageSyr - Representation of the Syriac language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageSyr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'syr'; - } - - public function defaultScript() - { - return new ScriptSyrc(); - } - - public function defaultTerritory() - { - return new TerritoryIq(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTa.php b/vendor/fisharebest/localization/src/Language/LanguageTa.php deleted file mode 100644 index acff028b5c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTa.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptTaml; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageTa - Representation of the Tamil language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ta'; - } - - public function defaultScript() - { - return new ScriptTaml(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTe.php b/vendor/fisharebest/localization/src/Language/LanguageTe.php deleted file mode 100644 index eee1969947..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTe.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptTelu; -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LanguageTe - Representation of the Telugu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'te'; - } - - public function defaultScript() - { - return new ScriptTelu(); - } - - public function defaultTerritory() - { - return new TerritoryIn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTeo.php b/vendor/fisharebest/localization/src/Language/LanguageTeo.php deleted file mode 100644 index 2385f4dbd3..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTeo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LanguageTeo - Representation of the Teso language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTeo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'teo'; - } - - public function defaultTerritory() - { - return new TerritoryUg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTg.php b/vendor/fisharebest/localization/src/Language/LanguageTg.php deleted file mode 100644 index 7034ef019f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTg.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryTj; - -/** - * Class LanguageTg - Representation of the Tajik language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tg'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryTj(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTh.php b/vendor/fisharebest/localization/src/Language/LanguageTh.php deleted file mode 100644 index 6963d933be..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTh.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptThai; -use Fisharebest\Localization\Territory\TerritoryTh; - -/** - * Class LanguageTh - Representation of the Thai language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'th'; - } - - public function defaultScript() - { - return new ScriptThai(); - } - - public function defaultTerritory() - { - return new TerritoryTh(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTi.php b/vendor/fisharebest/localization/src/Language/LanguageTi.php deleted file mode 100644 index af75f47586..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTi.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Script\ScriptEthi; -use Fisharebest\Localization\Territory\TerritoryEt; - -/** - * Class LanguageTi - Representation of the Tigrinya language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ti'; - } - - public function defaultScript() - { - return new ScriptEthi(); - } - - public function defaultTerritory() - { - return new TerritoryEt(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTig.php b/vendor/fisharebest/localization/src/Language/LanguageTig.php deleted file mode 100644 index f22abfc27a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTig.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptEthi; -use Fisharebest\Localization\Territory\TerritoryEr; - -/** - * Class LanguageTif - Representation of the Tigre language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTig extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tig'; - } - - public function defaultScript() - { - return new ScriptEthi(); - } - - public function defaultTerritory() - { - return new TerritoryEr(); - } - - public function pluralRule() - { - return new PluralRule1(); // - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTk.php b/vendor/fisharebest/localization/src/Language/LanguageTk.php deleted file mode 100644 index c8e0f232ac..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTk.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTm; - -/** - * Class LanguageTk - Representation of the Turkmen language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tk'; - } - - public function defaultTerritory() - { - return new TerritoryTm(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTl.php b/vendor/fisharebest/localization/src/Language/LanguageTl.php deleted file mode 100644 index 470a6711c4..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTl.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleTagalog; -use Fisharebest\Localization\Territory\TerritoryPh; - -/** - * Class LanguageTl - Representation of the Tagalog language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTl extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tl'; - } - - public function defaultTerritory() - { - return new TerritoryPh(); - } - - public function pluralRule() - { - return new PluralRuleTagalog(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTn.php b/vendor/fisharebest/localization/src/Language/LanguageTn.php deleted file mode 100644 index a7f5d30b94..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTn.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryBw; - -/** - * Class LanguageTn - Representation of the Tswana language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTn extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tn'; - } - - public function defaultTerritory() - { - return new TerritoryBw(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTo.php b/vendor/fisharebest/localization/src/Language/LanguageTo.php deleted file mode 100644 index edebfc52a1..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryTo; - -/** - * Class LanguageTo - Representation of the Tonga (Tonga Islands) language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'to'; - } - - public function defaultTerritory() - { - return new TerritoryTo(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTr.php b/vendor/fisharebest/localization/src/Language/LanguageTr.php deleted file mode 100644 index 90815cff8f..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTr.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryTr; - -/** - * Class LanguageTr - Representation of the Turkish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tr'; - } - - public function defaultTerritory() - { - return new TerritoryTr(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTs.php b/vendor/fisharebest/localization/src/Language/LanguageTs.php deleted file mode 100644 index df900620ec..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTs.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageTs - Representation of the Tsonga language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTs extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ts'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTt.php b/vendor/fisharebest/localization/src/Language/LanguageTt.php deleted file mode 100644 index 40effcad1c..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTt.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LanguageTt - Representation of the Tatar language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTt extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tt'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryRu(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTwq.php b/vendor/fisharebest/localization/src/Language/LanguageTwq.php deleted file mode 100644 index b63cf38f51..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTwq.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryNe; - -/** - * Class LanguageTwq - Representation of the Tasawaq language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTwq extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'twq'; - } - - public function defaultTerritory() - { - return new TerritoryNe(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageTzm.php b/vendor/fisharebest/localization/src/Language/LanguageTzm.php deleted file mode 100644 index 18f8cd1b23..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageTzm.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRuleCentralAtlasTamazight; -use Fisharebest\Localization\Territory\TerritoryMa; - -/** - * Class LanguageTzm - Representation of the Central Atlas Tamazight language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageTzm extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'tzm'; - } - - public function defaultTerritory() - { - return new TerritoryMa(); - } - - public function pluralRule() - { - return new PluralRuleCentralAtlasTamazight(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageUg.php b/vendor/fisharebest/localization/src/Language/LanguageUg.php deleted file mode 100644 index 59605a7b1d..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageUg.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryCn; - -/** - * Class LanguageUg - Representation of the Uighur language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageUg extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ug'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryCn(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageUk.php b/vendor/fisharebest/localization/src/Language/LanguageUk.php deleted file mode 100644 index 6066531ece..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageUk.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule7; -use Fisharebest\Localization\Script\ScriptCyrl; -use Fisharebest\Localization\Territory\TerritoryUa; - -/** - * Class LanguageUk - Representation of the Ukrainian language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageUk extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'uk'; - } - - public function defaultScript() - { - return new ScriptCyrl(); - } - - public function defaultTerritory() - { - return new TerritoryUa(); - } - - public function pluralRule() - { - return new PluralRule7(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageUr.php b/vendor/fisharebest/localization/src/Language/LanguageUr.php deleted file mode 100644 index a0243ace3b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageUr.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptArab; -use Fisharebest\Localization\Territory\TerritoryPk; - -/** - * Class LanguageUr - Representation of the Urdu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageUr extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'ur'; - } - - public function defaultScript() - { - return new ScriptArab(); - } - - public function defaultTerritory() - { - return new TerritoryPk(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageUz.php b/vendor/fisharebest/localization/src/Language/LanguageUz.php deleted file mode 100644 index 5a8fa14332..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageUz.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUz; - -/** - * Class LanguageUz - Representation of the Uzbek language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageUz extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'uz'; - } - - public function defaultTerritory() - { - return new TerritoryUz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageVai.php b/vendor/fisharebest/localization/src/Language/LanguageVai.php deleted file mode 100644 index 12c8e8f64d..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageVai.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Script\ScriptVaii; -use Fisharebest\Localization\Territory\TerritoryLr; - -/** - * Class LanguageVai - Representation of the Vai language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageVai extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'vai'; - } - - public function defaultScript() - { - return new ScriptVaii(); - } - - public function defaultTerritory() - { - return new TerritoryLr(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageVe.php b/vendor/fisharebest/localization/src/Language/LanguageVe.php deleted file mode 100644 index 29b95cf369..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageVe.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageVe - Representation of the Venda language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageVe extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 've'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageVi.php b/vendor/fisharebest/localization/src/Language/LanguageVi.php deleted file mode 100644 index 1d5856e799..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageVi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryVn; - -/** - * Class LanguageVi - Representation of the Vietnamese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageVi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'vi'; - } - - public function defaultTerritory() - { - return new TerritoryVn(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageVo.php b/vendor/fisharebest/localization/src/Language/LanguageVo.php deleted file mode 100644 index 2898cb6ea1..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageVo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; - -/** - * Class LanguageVo - Representation of the Volapük language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageVo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'vo'; - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageVun.php b/vendor/fisharebest/localization/src/Language/LanguageVun.php deleted file mode 100644 index 25f3cf07b2..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageVun.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LanguageVun - Representation of the Vunjo language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageVun extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'vun'; - } - - public function defaultTerritory() - { - return new TerritoryTz(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageWa.php b/vendor/fisharebest/localization/src/Language/LanguageWa.php deleted file mode 100644 index 241e0b27c4..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageWa.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryBe; - -/** - * Class LanguageXh - Representation of the Walloon language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageWa extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'wa'; - } - - public function defaultTerritory() - { - return new TerritoryBe(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageWae.php b/vendor/fisharebest/localization/src/Language/LanguageWae.php deleted file mode 100644 index 8660f5d3f1..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageWae.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LanguageWae - Representation of the Walser language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageWae extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'wae'; - } - - public function defaultTerritory() - { - return new TerritoryCh(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageWo.php b/vendor/fisharebest/localization/src/Language/LanguageWo.php deleted file mode 100644 index 6ecd697dcc..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageWo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritorySn; - -/** - * Class LanguageXh - Representation of the Wolof language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageWo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'wo'; - } - - public function defaultTerritory() - { - return new TerritorySn(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageXh.php b/vendor/fisharebest/localization/src/Language/LanguageXh.php deleted file mode 100644 index e4eaa5c82b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageXh.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageXh - Representation of the Xhosa language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageXh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'xh'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageXog.php b/vendor/fisharebest/localization/src/Language/LanguageXog.php deleted file mode 100644 index f6faa81b1b..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageXog.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LanguageXog - Representation of the Soga language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageXog extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'xog'; - } - - public function defaultTerritory() - { - return new TerritoryUg(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageYav.php b/vendor/fisharebest/localization/src/Language/LanguageYav.php deleted file mode 100644 index 462e953a8a..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageYav.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LanguageYav - Representation of the Yangben language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageYav extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'yav'; - } - - public function defaultTerritory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageYi.php b/vendor/fisharebest/localization/src/Language/LanguageYi.php deleted file mode 100644 index 9464ced9cc..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageYi.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule1; -use Fisharebest\Localization\Script\ScriptHebr; - -/** - * Class LanguageYi - Representation of the Yiddish language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageYi extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'yi'; - } - - public function defaultScript() - { - return new ScriptHebr(); - } - - public function pluralRule() - { - return new PluralRule1(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageYo.php b/vendor/fisharebest/localization/src/Language/LanguageYo.php deleted file mode 100644 index 4fc3c9b9cd..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageYo.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LanguageYo - Representation of the Yoruba language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageYo extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'yo'; - } - - public function defaultTerritory() - { - return new TerritoryNg(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageYue.php b/vendor/fisharebest/localization/src/Language/LanguageYue.php deleted file mode 100644 index bf16a5a4db..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageYue.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptHans; -use Fisharebest\Localization\Territory\TerritoryCn; - -/** - * Class LanguageZh - Representation of the Chinese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageYue extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'yue'; - } - - public function defaultTerritory() - { - return new TerritoryCn(); - } - - public function defaultScript() - { - return new ScriptHans(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageZgh.php b/vendor/fisharebest/localization/src/Language/LanguageZgh.php deleted file mode 100644 index 65d6e8ff38..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageZgh.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\Territory\TerritoryMa; - -/** - * Class LanguageZgh - Representation of the Standard Moroccan Tamazight language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageZgh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'zgh'; - } - - public function defaultTerritory() - { - return new TerritoryMa(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageZh.php b/vendor/fisharebest/localization/src/Language/LanguageZh.php deleted file mode 100644 index 5a8dadb7af..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageZh.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule0; -use Fisharebest\Localization\Script\ScriptHans; -use Fisharebest\Localization\Territory\TerritoryCn; - -/** - * Class LanguageZh - Representation of the Chinese language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageZh extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'zh'; - } - - public function defaultTerritory() - { - return new TerritoryCn(); - } - - public function defaultScript() - { - return new ScriptHans(); - } - - public function pluralRule() - { - return new PluralRule0(); - } -} diff --git a/vendor/fisharebest/localization/src/Language/LanguageZu.php b/vendor/fisharebest/localization/src/Language/LanguageZu.php deleted file mode 100644 index b8f500f1c9..0000000000 --- a/vendor/fisharebest/localization/src/Language/LanguageZu.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Language; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LanguageZu - Representation of the Zulu language. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LanguageZu extends AbstractLanguage implements LanguageInterface -{ - public function code() - { - return 'zu'; - } - - public function defaultTerritory() - { - return new TerritoryZa(); - } - - public function pluralRule() - { - return new PluralRule2(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale.php b/vendor/fisharebest/localization/src/Locale.php deleted file mode 100644 index c0627c7f7c..0000000000 --- a/vendor/fisharebest/localization/src/Locale.php +++ /dev/null @@ -1,159 +0,0 @@ -<?php - -namespace Fisharebest\Localization; - -use DomainException; -use Fisharebest\Localization\Locale\LocaleInterface; - -/** - * Class Locale - Static functions to generate and compare locales. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Locale -{ - /** - * Some browsers let the user choose "Chinese, Traditional", but add headers for "zh-HK"... - * - * @var array - */ - private static $http_accept_chinese = array( - 'zh-cn' => 'zh-hans-cn', - 'zh-sg' => 'zh-hans-sg', - 'zh-hk' => 'zh-hant-hk', - 'zh-mo' => 'zh-hant-mo', - 'zh-tw' => 'zh-hant-tw', - ); - - /** - * Callback for PHP sort functions - allows lists of locales to be sorted. - * Diacritics are removed and text is capitalized to allow fast/simple sorting. - * - * @param LocaleInterface $x - * @param LocaleInterface $y - * - * @return int - */ - public static function compare(LocaleInterface $x, LocaleInterface $y) - { - return strcmp($x->endonymSortable(), $y->endonymSortable()); - } - - /** - * Create a locale from a language tag (or locale code). - * - * @param string $code - * - * @return LocaleInterface - * @throws DomainException - */ - public static function create($code) - { - $class = __NAMESPACE__ . '\Locale\Locale' . implode(array_map(function ($x) { - return ucfirst(strtolower($x)); - }, preg_split('/[^a-zA-Z0-9]+/', $code))); - - if (class_exists($class)) { - return new $class(); - } - - throw new DomainException($code); - } - - /** - * Create a locale from a language tag (or locale code). - * - * @param string[] $server The $_SERVER array - * @param LocaleInterface[] $available All locales supported by the application - * @param LocaleInterface $default Locale to show in no matching locales - * - * @return LocaleInterface - */ - public static function httpAcceptLanguage(array $server, array $available, LocaleInterface $default) - { - if (!empty($server['HTTP_ACCEPT_LANGUAGE'])) { - $http_accept_language = strtolower(str_replace(' ', '', $server['HTTP_ACCEPT_LANGUAGE'])); - preg_match_all('/(?:([a-z][a-z0-9_-]+)(?:;q=([0-9.]+))?)/', $http_accept_language, $match); - $preferences = array_map(function ($x) { - return $x === '' ? 1.0 : (float) $x; - }, array_combine($match[1], $match[2])); - - // "Common sense" logic for badly configured clients. - $preferences = self::httpAcceptChinese($preferences); - $preferences = self::httpAcceptDowngrade($preferences); - - // Need a stable sort, as the original order is significant - $preferences = array_map(function ($x) { - static $n = 0; - - return array($x, --$n); - }, $preferences); - arsort($preferences); - $preferences = array_map(function ($x) { - return $x[0]; - }, $preferences); - - foreach (array_keys($preferences) as $code) { - try { - $locale = self::create($code); - if (in_array($locale, $available, false)) { - return $locale; - } - } catch (DomainException $ex) { - // An unknown locale? Ignore it. - } - } - } - - return $default; - } - - /** - * If a client requests "de-DE" (but not "de"), then add "de" as a lower-priority fallback. - * - * @param $preferences - * - * @return int[] - */ - private static function httpAcceptDowngrade($preferences) - { - foreach ($preferences as $code => $priority) { - // Three parts: "zh-hans-cn" => "zh-hans" and "zh" - if (preg_match('/^(([a-z]+)-[a-z]+)-[a-z]+$/', $code, $match)) { - if (!array_key_exists($match[2], $preferences)) { - $preferences[$match[2]] = $priority * 0.95; - } - if (!array_key_exists($match[1], $preferences)) { - $preferences[$match[1]] = $priority * 0.95; - } - } - // Two parts: "de-de" => "de" - if (preg_match('/^([a-z]+)-[a-z]+$/', $code, $match) && !array_key_exists($match[1], $preferences)) { - $preferences[$match[1]] = $priority * 0.95; - } - } - - return $preferences; - } - - /** - * Some browsers allow the user to select "Chinese (simplified)", but then use zh-CN instead of zh-Hans. - * This goes against the advice of w3.org. - * - * @param int[] $preferences - * - * @return int[] - */ - private static function httpAcceptChinese($preferences) - { - foreach (self::$http_accept_chinese as $old => $new) { - if (array_key_exists($old, $preferences) && !array_key_exists($new, $preferences)) { - $preferences[$new] = $preferences[$old] * 0.95; - } - } - - return $preferences; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/AbstractLocale.php b/vendor/fisharebest/localization/src/Locale/AbstractLocale.php deleted file mode 100644 index 9e1c2b3c10..0000000000 --- a/vendor/fisharebest/localization/src/Locale/AbstractLocale.php +++ /dev/null @@ -1,319 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageInterface; -use Fisharebest\Localization\PluralRule\PluralRuleInterface; -use Fisharebest\Localization\Script\ScriptInterface; -use Fisharebest\Localization\Territory\TerritoryInterface; -use Fisharebest\Localization\Variant\VariantInterface; - -/** - * Class AbstractLocale - The “root” locale, from which all others are derived. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -abstract class AbstractLocale -{ - // "Source" strings, when translating numbers - const DECIMAL = '.'; // The default decimal mark - const GROUP = ','; // The digit group separator - const NEGATIVE = '-'; // Negative numbers - - // "Target" strings, when translating numbers - const ALM = "\xD8\x9C"; // Arabic Letter Mark - const APOSTROPHE = '’'; - const ARAB_DECIMAL = "\xD9\xAB"; - const ARAB_GROUP = "\xD9\xAC"; - const ARAB_MINUS = "\xE2\x88\x92"; - const ARAB_PERCENT = "\xD9\xAA"; - const COMMA = ','; - const DOT = '.'; - const HYPHEN = '-'; - const LTR_MARK = "\xE2\x80\x8E"; // Left-to-right marker - const MINUS_SIGN = "\xE2\x88\x92"; - const NARROW_NBSP = "\xE2\x80\xAF"; // Narrow non-breaking space - const NBSP = "\xC2\xA0"; // Non-breaking space - const PRIME = '\''; - const RTL_MARK = "\xE2\x80\x8F"; // Right-to-left marker - - // For formatting percentages - const PERCENT = '%%'; - const PLACEHOLDER = '%s'; - - /** - * Generate a linux locale code for this locale. Examples include - * "fr", “en_GB”, “ca_ES@valencia” and “sr@latin”. - * - * @return string - */ - public function code() - { - $code = $this->language()->code() . '_' . $this->territory()->code(); - - if ($this->script() != $this->language()->defaultScript()) { - $code .= '@' . strtolower($this->script()->unicodeName()); - } - - if ($this->variant() !== null) { - if ($this->variant()->code() === 'posix') { - $code = 'POSIX'; - } else { - $code .= '@' . $this->variant()->code(); - } - } - - return $code; - } - - /** - * Which collation sequence should be used for this locale? - * “unicode_ci” would mean use “utf8_unicode_ci”, “utf8mb4_unicode_ci”, etc. - * - * @link http://dev.mysql.com/doc/refman/5.7/en/charset-unicode-sets.html - * @return string - */ - public function collation() - { - return 'unicode_ci'; - } - - /** - * Convert (Hindu-Arabic) digits into a localized form - * - * @param string $string e.g. "123.45" - * - * @return string - */ - public function digits($string) - { - return strtr($string, $this->numberSymbols() + $this->numerals()); - } - - /** - * When writing large numbers place a separator after this number of digits. - * - * @return int - */ - protected function digitsFirstGroup() - { - return 3; - } - - /** - * When writing large numbers place a separator after this number of digits. - * - * @return int - */ - protected function digitsGroup() - { - return 3; - } - - /** - * Is text written left-to-right “ltr” or right-to-left “rtl”. - * Most scripts are only written in one direction, but there are a few that - * can be written in either direction. - * - * @return string “ltr” or “rtl” - */ - public function direction() - { - return $this->script()->direction(); - } - - /** - * The name of this locale, in its own language/script, and with the - * customary capitalization of the locale. - * - * @return string - */ - abstract public function endonym(); - - /** - * A sortable version of the locale name. For example, “British English” - * might sort as “ENGLISH, BRITISH” to keep all the variants of English together. - * - * All-capitals makes sorting easier, as we can use a simple strcmp(). - * - * @return string - */ - public function endonymSortable() - { - return $this->endonym(); - } - - /** - * Markup for an HTML element - * - * @return string e.g. lang="ar" dir="rtl" - */ - public function htmlAttributes() - { - $direction = $this->direction(); - - if ($direction === 'rtl' || $direction !== $this->script()->direction()) { - return 'lang="' . $this->languageTag() . '" dir="' . $this->direction() . '"'; - } - - return 'lang="' . $this->languageTag() . '"'; - } - - /** - * The language used by this locale. - * - * @return LanguageInterface - */ - abstract public function language(); - - /** - * The IETF language tag for the locale. Examples include - * “fr, “en-GB”, “ca-ES-valencia” and “sr-Latn”. - * - * @return string - */ - public function languageTag() - { - $language_tag = $this->language()->code(); - if ($this->script() != $this->language()->defaultScript()) { - $language_tag .= '-' . $this->script()->code(); - } - if ($this->territory() != $this->language()->defaultTerritory()) { - $language_tag .= '-' . $this->territory()->code(); - } - if ($this->variant()) { - $language_tag .= '-' . $this->variant()->code(); - } - - return $language_tag; - } - - /** - * When using grouping digits in numbers, keep this many of digits together. - * - * @return int - */ - protected function minimumGroupingDigits() - { - return 1; - } - - /** - * Convert (Hindu-Arabic) digits into a localized form - * - * @param int|float $number The number to be localized - * - * @return string - */ - public function number($number) - { - if ($number < 0) { - $number = -$number; - $negative = self::NEGATIVE; - } else { - $negative = ''; - } - $parts = explode(self::DECIMAL, (string) $number, 2); - $integers = $parts[0]; - if (strlen($integers) >= $this->digitsFirstGroup() + $this->minimumGroupingDigits()) { - $todo = substr($integers, 0, -$this->digitsFirstGroup()); - $integers = self::GROUP . substr($integers, -$this->digitsFirstGroup()); - while (strlen($todo) >= $this->digitsGroup() + $this->minimumGroupingDigits()) { - $integers = self::GROUP . substr($todo, -$this->digitsGroup()) . $integers; - $todo = substr($todo, 0, -$this->digitsGroup()); - } - $integers = $todo . $integers; - } - if (count($parts) > 1) { - $decimals = self::DECIMAL . $parts[1]; - } else { - $decimals = ''; - } - - return $this->digits($negative . $integers . $decimals); - } - - /** - * The symbols used to format numbers. - * - * @return string[] - */ - protected function numberSymbols() - { - return array(); - } - - /** - * The numerals (0123456789) used by this locale. - * - * @return string[] - */ - protected function numerals() - { - return $this->script()->numerals(); - } - - /** - * Convert (Hindu-Arabic) digits into a localized form - * - * @param float $number The number to be localized - * - * @return string - */ - public function percent($number) - { - return sprintf($this->percentFormat(), $this->number($number * 100.0)); - } - - /** - * How to format a floating point number (%s) as a percentage. - * - * @return string - */ - protected function percentFormat() - { - return self::PLACEHOLDER . self::PERCENT; - } - - /** - * Which plural rule is used in this locale - * - * @return PluralRuleInterface - */ - public function pluralRule() - { - return $this->language()->pluralRule(); - } - - /** - * The script used by this locale. - * - * @return ScriptInterface - */ - public function script() - { - return $this->language()->defaultScript(); - } - - /** - * The territory used by this locale. - * - * @return TerritoryInterface - */ - public function territory() - { - return $this->language()->defaultTerritory(); - } - - /** - * The variant, if any of this locale. - * - * @return VariantInterface|null - */ - public function variant() - { - return null; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAa.php b/vendor/fisharebest/localization/src/Locale/LocaleAa.php deleted file mode 100644 index 789337f7a2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAa; - -/** - * Class LocaleAa - Afar - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Qafar'; - } - - public function endonymSortable() - { - return 'QAFAR'; - } - - public function language() - { - return new LanguageAa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAaDj.php b/vendor/fisharebest/localization/src/Locale/LocaleAaDj.php deleted file mode 100644 index fb82171453..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAaDj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDj; - -/** - * Class LocaleAaDj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAaDj extends LocaleAa -{ - public function territory() - { - return new TerritoryDj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAaEr.php b/vendor/fisharebest/localization/src/Locale/LocaleAaEr.php deleted file mode 100644 index 0764b51889..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAaEr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEr; - -/** - * Class LocaleAaEr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAaEr extends LocaleAa -{ - public function territory() - { - return new TerritoryEr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAaEt.php b/vendor/fisharebest/localization/src/Locale/LocaleAaEt.php deleted file mode 100644 index 36bd459a7d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAaEt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAaEt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAaEt extends LocaleAa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAf.php b/vendor/fisharebest/localization/src/Locale/LocaleAf.php deleted file mode 100644 index 7f294004d2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAf.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAf; - -/** - * Class LocaleAf - Afrikaans - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAf extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Afrikaans'; - } - - public function endonymSortable() - { - return 'AFRIKAANS'; - } - - public function language() - { - return new LanguageAf(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAfNa.php b/vendor/fisharebest/localization/src/Locale/LocaleAfNa.php deleted file mode 100644 index 7e334fe804..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAfNa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNa; - -/** - * Class LocaleAfNa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAfNa extends LocaleAf -{ - public function territory() - { - return new TerritoryNa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAfZa.php b/vendor/fisharebest/localization/src/Locale/LocaleAfZa.php deleted file mode 100644 index 5ba779640f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAfZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAfZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAfZa extends LocaleAf -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAgq.php b/vendor/fisharebest/localization/src/Locale/LocaleAgq.php deleted file mode 100644 index 2d5b93e0ac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAgq.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAgq; - -/** - * Class LocaleAgq - Aghem - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAgq extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Aghem'; - } - - public function endonymSortable() - { - return 'AGHEM'; - } - - public function language() - { - return new LanguageAgq(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAgqCm.php b/vendor/fisharebest/localization/src/Locale/LocaleAgqCm.php deleted file mode 100644 index d683af4584..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAgqCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAgqCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAgqCm extends LocaleAgq -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAk.php b/vendor/fisharebest/localization/src/Locale/LocaleAk.php deleted file mode 100644 index 44bbf76f47..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAk.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAk; - -/** - * Class LocaleAk - Akan - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Akan'; - } - - public function endonymSortable() - { - return 'AKAN'; - } - - public function language() - { - return new LanguageAk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAkGh.php b/vendor/fisharebest/localization/src/Locale/LocaleAkGh.php deleted file mode 100644 index c6baab2dc2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAkGh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAkGh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAkGh extends LocaleAk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAm.php b/vendor/fisharebest/localization/src/Locale/LocaleAm.php deleted file mode 100644 index ba1d2fae92..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAm.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAm; - -/** - * Class LocaleAm - Amharic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAm extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'አማርኛ'; - } - - public function language() - { - return new LanguageAm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAmEt.php b/vendor/fisharebest/localization/src/Locale/LocaleAmEt.php deleted file mode 100644 index 7513698687..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAmEt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAmEt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAmEt extends LocaleAm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAng.php b/vendor/fisharebest/localization/src/Locale/LocaleAng.php deleted file mode 100644 index 51f3a3eaeb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAng.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAng; - -/** - * Class LocaleAng - Anglo-Saxon / Old-English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAng extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ænglisc'; - } - - public function endonymSortable() - { - return 'ÆNGLISC'; - } - - public function language() - { - return new LanguageAng(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAr.php b/vendor/fisharebest/localization/src/Locale/LocaleAr.php deleted file mode 100644 index f48f105de7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAr.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAr; - -/** - * Class LocaleAr - Arabic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'العربية'; - } - - public function language() - { - return new LanguageAr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::ALM . self::HYPHEN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT . self::ALM; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAr001.php b/vendor/fisharebest/localization/src/Locale/LocaleAr001.php deleted file mode 100644 index 6435d03a03..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAr001.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAr001 - Modern Standard Arabic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAr001 extends LocaleAr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArAe.php b/vendor/fisharebest/localization/src/Locale/LocaleArAe.php deleted file mode 100644 index 056254a5fc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArAe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAe; - -/** - * Class LocaleArAe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArAe extends LocaleAr -{ - public function territory() - { - return new TerritoryAe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArBh.php b/vendor/fisharebest/localization/src/Locale/LocaleArBh.php deleted file mode 100644 index 66d6e29dd1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArBh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBh; - -/** - * Class LocaleArBh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArBh extends LocaleAr -{ - public function territory() - { - return new TerritoryBh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArDj.php b/vendor/fisharebest/localization/src/Locale/LocaleArDj.php deleted file mode 100644 index 775d40744f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArDj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDj; - -/** - * Class LocaleArDj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArDj extends LocaleAr -{ - public function territory() - { - return new TerritoryDj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArDz.php b/vendor/fisharebest/localization/src/Locale/LocaleArDz.php deleted file mode 100644 index 9636997d9d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArDz.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; -use Fisharebest\Localization\Territory\TerritoryDz; - -/** - * Class LocaleArDz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArDz extends LocaleAr -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::LTR_MARK . self::HYPHEN, - ); - } - - protected function numerals() - { - $latin = new ScriptLatn(); - - return $latin->numerals(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::LTR_MARK . self::PERCENT . self::LTR_MARK; - } - - public function territory() - { - return new TerritoryDz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArEg.php b/vendor/fisharebest/localization/src/Locale/LocaleArEg.php deleted file mode 100644 index f34c1c99cf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArEg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEg; - -/** - * Class LocaleArEg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArEg extends LocaleAr -{ - public function territory() - { - return new TerritoryEg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArEh.php b/vendor/fisharebest/localization/src/Locale/LocaleArEh.php deleted file mode 100644 index a18a3fee7c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArEh.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; -use Fisharebest\Localization\Territory\TerritoryEh; - -/** - * Class LocaleArEh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArEh extends LocaleAr -{ - public function numberSymbols() - { - return array( - self::NEGATIVE => self::LTR_MARK . '-', - ); - } - - protected function numerals() - { - $latin = new ScriptLatn(); - - return $latin->numerals(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::LTR_MARK . self::PERCENT . self::LTR_MARK; - } - - public function territory() - { - return new TerritoryEh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArEr.php b/vendor/fisharebest/localization/src/Locale/LocaleArEr.php deleted file mode 100644 index 3f9dac9f00..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArEr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEr; - -/** - * Class LocaleArEr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArEr extends LocaleAr -{ - public function territory() - { - return new TerritoryEr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArIl.php b/vendor/fisharebest/localization/src/Locale/LocaleArIl.php deleted file mode 100644 index ebcb425dfb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArIl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIl; - -/** - * Class LocaleArIl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArIl extends LocaleAr -{ - public function territory() - { - return new TerritoryIl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArIq.php b/vendor/fisharebest/localization/src/Locale/LocaleArIq.php deleted file mode 100644 index 346c132343..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArIq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIq; - -/** - * Class LocaleArIq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArIq extends LocaleAr -{ - public function territory() - { - return new TerritoryIq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArJo.php b/vendor/fisharebest/localization/src/Locale/LocaleArJo.php deleted file mode 100644 index b1fd46f35d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArJo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryJo; - -/** - * Class LocaleArJo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArJo extends LocaleAr -{ - public function territory() - { - return new TerritoryJo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArKm.php b/vendor/fisharebest/localization/src/Locale/LocaleArKm.php deleted file mode 100644 index 4a2fbbaba3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArKm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKm; - -/** - * Class LocaleArKm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArKm extends LocaleAr -{ - public function territory() - { - return new TerritoryKm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArKw.php b/vendor/fisharebest/localization/src/Locale/LocaleArKw.php deleted file mode 100644 index 60f39f9aea..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArKw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKw; - -/** - * Class LocaleArKw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArKw extends LocaleAr -{ - public function territory() - { - return new TerritoryKw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArLb.php b/vendor/fisharebest/localization/src/Locale/LocaleArLb.php deleted file mode 100644 index 3117080934..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArLb.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLb; - -/** - * Class LocaleArLb - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArLb extends LocaleAr -{ - public function territory() - { - return new TerritoryLb(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArLy.php b/vendor/fisharebest/localization/src/Locale/LocaleArLy.php deleted file mode 100644 index 568dc32413..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArLy.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; -use Fisharebest\Localization\Territory\TerritoryLy; - -/** - * Class LocaleArLy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArLy extends LocaleAr -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::LTR_MARK . '-', - ); - } - - protected function numerals() - { - $latin = new ScriptLatn(); - - return $latin->numerals(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::LTR_MARK . self::PERCENT . self::LTR_MARK; - } - - public function territory() - { - return new TerritoryLy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArMa.php b/vendor/fisharebest/localization/src/Locale/LocaleArMa.php deleted file mode 100644 index 4bac30ed96..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArMa.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; -use Fisharebest\Localization\Territory\TerritoryMa; - -/** - * Class LocaleArMa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArMa extends LocaleAr -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::LTR_MARK . '-', - ); - } - - protected function numerals() - { - $latin = new ScriptLatn(); - - return $latin->numerals(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::LTR_MARK . self::PERCENT . self::LTR_MARK; - } - - public function territory() - { - return new TerritoryMa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArMr.php b/vendor/fisharebest/localization/src/Locale/LocaleArMr.php deleted file mode 100644 index 0185c75352..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArMr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMr; - -/** - * Class LocaleArMr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArMr extends LocaleAr -{ - public function territory() - { - return new TerritoryMr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArOm.php b/vendor/fisharebest/localization/src/Locale/LocaleArOm.php deleted file mode 100644 index 38850bd1bc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArOm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryOm; - -/** - * Class LocaleArOm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArOm extends LocaleAr -{ - public function territory() - { - return new TerritoryOm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArPs.php b/vendor/fisharebest/localization/src/Locale/LocaleArPs.php deleted file mode 100644 index 1eb9c5c8b3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArPs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPs; - -/** - * Class LocaleArPs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArPs extends LocaleAr -{ - public function territory() - { - return new TerritoryPs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArQa.php b/vendor/fisharebest/localization/src/Locale/LocaleArQa.php deleted file mode 100644 index 9ae14abf2c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArQa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryQa; - -/** - * Class LocaleArQa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArQa extends LocaleAr -{ - public function territory() - { - return new TerritoryQa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArSa.php b/vendor/fisharebest/localization/src/Locale/LocaleArSa.php deleted file mode 100644 index 6c985dc347..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArSa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySa; - -/** - * Class LocaleArSa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArSa extends LocaleAr -{ - public function territory() - { - return new TerritorySa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArSd.php b/vendor/fisharebest/localization/src/Locale/LocaleArSd.php deleted file mode 100644 index aac03f4448..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArSd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySd; - -/** - * Class LocaleArSd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArSd extends LocaleAr -{ - public function territory() - { - return new TerritorySd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArSo.php b/vendor/fisharebest/localization/src/Locale/LocaleArSo.php deleted file mode 100644 index 83462f2f13..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArSo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySo; - -/** - * Class LocaleArSo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArSo extends LocaleAr -{ - public function territory() - { - return new TerritorySo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArSs.php b/vendor/fisharebest/localization/src/Locale/LocaleArSs.php deleted file mode 100644 index 259aeddea9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArSs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySs; - -/** - * Class LocaleArSs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArSs extends LocaleAr -{ - public function territory() - { - return new TerritorySs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArSy.php b/vendor/fisharebest/localization/src/Locale/LocaleArSy.php deleted file mode 100644 index 9e4ac60de5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArSy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySy; - -/** - * Class LocaleArSy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArSy extends LocaleAr -{ - public function territory() - { - return new TerritorySy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArTd.php b/vendor/fisharebest/localization/src/Locale/LocaleArTd.php deleted file mode 100644 index d14c735d97..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArTd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTd; - -/** - * Class LocaleArTd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArTd extends LocaleAr -{ - public function territory() - { - return new TerritoryTd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArTn.php b/vendor/fisharebest/localization/src/Locale/LocaleArTn.php deleted file mode 100644 index 304aecdc0f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArTn.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; -use Fisharebest\Localization\Territory\TerritoryTn; - -/** - * Class LocaleArTn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArTn extends LocaleAr -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::LTR_MARK . '-', - ); - } - - protected function numerals() - { - $latin = new ScriptLatn(); - - return $latin->numerals(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::LTR_MARK . self::PERCENT . self::LTR_MARK; - } - - public function territory() - { - return new TerritoryTn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArYe.php b/vendor/fisharebest/localization/src/Locale/LocaleArYe.php deleted file mode 100644 index a34a4f5acc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArYe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryYe; - -/** - * Class LocaleArYe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArYe extends LocaleAr -{ - public function territory() - { - return new TerritoryYe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleArs.php b/vendor/fisharebest/localization/src/Locale/LocaleArs.php deleted file mode 100644 index be1be1f4a2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleArs.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageArs; - -/** - * Class LocaleAr - Najdi Arabic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleArs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'اللهجة النجدية'; - } - - public function language() - { - return new LanguageArs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::ALM . self::HYPHEN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT . self::ALM; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAs.php b/vendor/fisharebest/localization/src/Locale/LocaleAs.php deleted file mode 100644 index 160abc3abd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAs.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAs; - -/** - * Class LocaleAs - Assamese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAs extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'অসমীয়া'; - } - - public function language() - { - return new LanguageAs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAsIn.php b/vendor/fisharebest/localization/src/Locale/LocaleAsIn.php deleted file mode 100644 index 7dd7d37cb5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAsIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAsIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAsIn extends LocaleAs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAsa.php b/vendor/fisharebest/localization/src/Locale/LocaleAsa.php deleted file mode 100644 index 19475f1682..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAsa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAsa; - -/** - * Class LocaleAsa - Asu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAsa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kipare'; - } - - public function endonymSortable() - { - return 'KIPARE'; - } - - public function language() - { - return new LanguageAsa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAsaTz.php b/vendor/fisharebest/localization/src/Locale/LocaleAsaTz.php deleted file mode 100644 index f9164cd945..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAsaTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAsaTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAsaTz extends LocaleAsa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAst.php b/vendor/fisharebest/localization/src/Locale/LocaleAst.php deleted file mode 100644 index 56f835d540..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAst.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAst; - -/** - * Class LocaleAst - Asturian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAst extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'asturianu'; - } - - public function endonymSortable() - { - return 'ASTURIANU'; - } - - public function language() - { - return new LanguageAst(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAstEs.php b/vendor/fisharebest/localization/src/Locale/LocaleAstEs.php deleted file mode 100644 index 6af28defec..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAstEs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAstEs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAstEs extends LocaleAst -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAz.php b/vendor/fisharebest/localization/src/Locale/LocaleAz.php deleted file mode 100644 index 6690452213..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAz.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAz; - -/** - * Class LocaleAz - Azerbaijani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAz extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'azərbaycan'; - } - - public function endonymSortable() - { - return 'AZERBAYCAN'; - } - - public function language() - { - return new LanguageAz(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAzCyrl.php b/vendor/fisharebest/localization/src/Locale/LocaleAzCyrl.php deleted file mode 100644 index bfdfd46a6e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAzCyrl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptCyrl; - -/** - * Class LocaleAzCyrl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAzCyrl extends LocaleAz -{ - public function script() - { - return new ScriptCyrl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAzCyrlAz.php b/vendor/fisharebest/localization/src/Locale/LocaleAzCyrlAz.php deleted file mode 100644 index 7f2e910694..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAzCyrlAz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAz; - -/** - * Class LocaleAzCyrlAz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAzCyrlAz extends LocaleAzCyrl -{ - public function territory() - { - return new TerritoryAz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAzLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleAzLatn.php deleted file mode 100644 index 66c5193668..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAzLatn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleAzLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAzLatn extends LocaleAz -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAzLatnAz.php b/vendor/fisharebest/localization/src/Locale/LocaleAzLatnAz.php deleted file mode 100644 index d87ae708eb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAzLatnAz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAz; - -/** - * Class LocaleAzLatnAz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAzLatnAz extends LocaleAzLatn -{ - public function territory() - { - return new TerritoryAz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBas.php b/vendor/fisharebest/localization/src/Locale/LocaleBas.php deleted file mode 100644 index 9bd20225db..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBas.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBas; - -/** - * Class LocaleBas - Basaa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBas extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ɓàsàa'; - } - - public function endonymSortable() - { - return 'BASAA'; - } - - public function language() - { - return new LanguageBas(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBasCm.php b/vendor/fisharebest/localization/src/Locale/LocaleBasCm.php deleted file mode 100644 index ff320c1d2a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBasCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBasCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBasCm extends LocaleBas -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBe.php b/vendor/fisharebest/localization/src/Locale/LocaleBe.php deleted file mode 100644 index 695bea057d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBe.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBe; - -/** - * Class LocaleBe - Belarusian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'беларуская'; - } - - public function endonymSortable() - { - return 'БЕЛАРУСКАЯ'; - } - - public function language() - { - return new LanguageBe(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBeBy.php b/vendor/fisharebest/localization/src/Locale/LocaleBeBy.php deleted file mode 100644 index 6ed92ba6fa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBeBy.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBeBy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBeBy extends LocaleBe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBem.php b/vendor/fisharebest/localization/src/Locale/LocaleBem.php deleted file mode 100644 index 2948a388f7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBem.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBem; - -/** - * Class LocaleBem - Bemba - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBem extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ichibemba'; - } - - public function endonymSortable() - { - return 'ICHIBEMBA'; - } - - public function language() - { - return new LanguageBem(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBemZm.php b/vendor/fisharebest/localization/src/Locale/LocaleBemZm.php deleted file mode 100644 index 091b81f2f3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBemZm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBemZm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBemZm extends LocaleBem -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBez.php b/vendor/fisharebest/localization/src/Locale/LocaleBez.php deleted file mode 100644 index 5a02be7e1b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBez.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBez; - -/** - * Class LocaleBez - Bena - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBez extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Hibena'; - } - - public function endonymSortable() - { - return 'HIBENA'; - } - - public function language() - { - return new LanguageBez(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBezTz.php b/vendor/fisharebest/localization/src/Locale/LocaleBezTz.php deleted file mode 100644 index 0fdb7bce4e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBezTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBezTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBezTz extends LocaleBez -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBg.php b/vendor/fisharebest/localization/src/Locale/LocaleBg.php deleted file mode 100644 index 57b221f575..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBg.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBg; - -/** - * Class LocaleBg - Bulgarian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'български'; - } - - public function endonymSortable() - { - return 'БЪЛГАРСКИ'; - } - - public function language() - { - return new LanguageBg(); - } - - protected function minimumGroupingDigits() - { - return 2; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBgBg.php b/vendor/fisharebest/localization/src/Locale/LocaleBgBg.php deleted file mode 100644 index db180b66eb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBgBg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBgBg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBgBg extends LocaleBg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBh.php b/vendor/fisharebest/localization/src/Locale/LocaleBh.php deleted file mode 100644 index ae0a4d2543..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBh.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBh; - -/** - * Class LocaleBh - Bihari - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBh extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'Bihari'; - } - - public function endonymSortable() - { - return 'BIHARI'; - } - - public function language() - { - return new LanguageBh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBm.php b/vendor/fisharebest/localization/src/Locale/LocaleBm.php deleted file mode 100644 index 0c1437b9f5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBm.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBm; - -/** - * Class LocaleBm - Bambara - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBm extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'bamanakan'; - } - - public function endonymSortable() - { - return 'BAMANAKAN'; - } - - public function language() - { - return new LanguageBm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBmLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleBmLatn.php deleted file mode 100644 index aa2c962671..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBmLatn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBmLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBmLatn extends LocaleBm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBmLatnMl.php b/vendor/fisharebest/localization/src/Locale/LocaleBmLatnMl.php deleted file mode 100644 index b72d46b6f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBmLatnMl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBmLatnMl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBmLatnMl extends LocaleBmLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBmMl.php b/vendor/fisharebest/localization/src/Locale/LocaleBmMl.php deleted file mode 100644 index 38cf7feb4f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBmMl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBmLatnMl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBmMl extends LocaleBm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBn.php b/vendor/fisharebest/localization/src/Locale/LocaleBn.php deleted file mode 100644 index 9e83a936bb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBn; - -/** - * Class LocaleBn - Bengali - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBn extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'বাংলা'; - } - - public function language() - { - return new LanguageBn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBnBd.php b/vendor/fisharebest/localization/src/Locale/LocaleBnBd.php deleted file mode 100644 index b5436851a4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBnBd.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBnBd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBnBd extends LocaleBn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBnIn.php b/vendor/fisharebest/localization/src/Locale/LocaleBnIn.php deleted file mode 100644 index ba1b6e6e6b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBnIn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LocaleBnIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBnIn extends LocaleBn -{ - public function territory() - { - return new TerritoryIn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBo.php b/vendor/fisharebest/localization/src/Locale/LocaleBo.php deleted file mode 100644 index cd765018cb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBo; - -/** - * Class LocaleBo - Tibetan - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'བོད་སྐད་'; - } - - public function language() - { - return new LanguageBo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBoCn.php b/vendor/fisharebest/localization/src/Locale/LocaleBoCn.php deleted file mode 100644 index b0f78854bc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBoCn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBoCn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBoCn extends LocaleBo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBoIn.php b/vendor/fisharebest/localization/src/Locale/LocaleBoIn.php deleted file mode 100644 index dbe82be7e4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBoIn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LocaleBoIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBoIn extends LocaleBo -{ - public function territory() - { - return new TerritoryIn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBr.php b/vendor/fisharebest/localization/src/Locale/LocaleBr.php deleted file mode 100644 index 8384e6226f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBr.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBr; - -/** - * Class LocaleBr - Breton - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'brezhoneg'; - } - - public function endonymSortable() - { - return 'BREZHONEG'; - } - - public function language() - { - return new LanguageBr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBrFr.php b/vendor/fisharebest/localization/src/Locale/LocaleBrFr.php deleted file mode 100644 index 757b987ba4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBrFr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBrFr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBrFr extends LocaleBr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBrx.php b/vendor/fisharebest/localization/src/Locale/LocaleBrx.php deleted file mode 100644 index a74556af98..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBrx.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBrx; - -/** - * Class LocaleBrx - Bodo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBrx extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'बड़ो'; - } - - public function language() - { - return new LanguageBrx(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBrxIn.php b/vendor/fisharebest/localization/src/Locale/LocaleBrxIn.php deleted file mode 100644 index 5bfb42740d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBrxIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBrxIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBrxIn extends LocaleBrx -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBs.php b/vendor/fisharebest/localization/src/Locale/LocaleBs.php deleted file mode 100644 index 3f1646cd1d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBs.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageBs; - -/** - * Class LocaleBs - Bosnian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'bosanski'; - } - - public function endonymSortable() - { - return 'BOSANSKI'; - } - - public function language() - { - return new LanguageBs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBsCyrl.php b/vendor/fisharebest/localization/src/Locale/LocaleBsCyrl.php deleted file mode 100644 index 99a69537be..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBsCyrl.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptCyrl; - -/** - * Class LocaleBsCyrl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBsCyrl extends LocaleBs -{ - public function script() - { - return new ScriptCyrl(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBsCyrlBa.php b/vendor/fisharebest/localization/src/Locale/LocaleBsCyrlBa.php deleted file mode 100644 index 4dd1430aaf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBsCyrlBa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBsCyrlBa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBsCyrlBa extends LocaleBsCyrl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBsLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleBsLatn.php deleted file mode 100644 index 901ae2e515..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBsLatn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBsLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBsLatn extends LocaleBs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleBsLatnBa.php b/vendor/fisharebest/localization/src/Locale/LocaleBsLatnBa.php deleted file mode 100644 index 8f23802857..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleBsLatnBa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleBsLatnBa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleBsLatnBa extends LocaleBsLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCa.php b/vendor/fisharebest/localization/src/Locale/LocaleCa.php deleted file mode 100644 index 84bbb4a3a9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCa.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCa; - -/** - * Class LocaleCa - Catalan - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'català'; - } - - public function endonymSortable() - { - return 'CATALA'; - } - - public function language() - { - return new LanguageCa(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCaAd.php b/vendor/fisharebest/localization/src/Locale/LocaleCaAd.php deleted file mode 100644 index e3521cb047..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCaAd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAd; - -/** - * Class LocaleCaAd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCaAd extends LocaleCa -{ - public function territory() - { - return new TerritoryAd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCaEs.php b/vendor/fisharebest/localization/src/Locale/LocaleCaEs.php deleted file mode 100644 index 549d44ce1a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCaEs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCaEs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCaEs extends LocaleCa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCaEsValencia.php b/vendor/fisharebest/localization/src/Locale/LocaleCaEsValencia.php deleted file mode 100644 index 5f6e205416..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCaEsValencia.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Variant\VariantValencia; - -/** - * Class LocaleCaEsValencia - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCaEsValencia extends LocaleCaEs -{ - public function variant() - { - return new VariantValencia(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCaFr.php b/vendor/fisharebest/localization/src/Locale/LocaleCaFr.php deleted file mode 100644 index da46bec171..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCaFr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFr; - -/** - * Class LocaleCaFr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCaFr extends LocaleCa -{ - public function territory() - { - return new TerritoryFr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCaIt.php b/vendor/fisharebest/localization/src/Locale/LocaleCaIt.php deleted file mode 100644 index bc92a0ef5b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCaIt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIt; - -/** - * Class LocaleCaIt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCaIt extends LocaleCa -{ - public function territory() - { - return new TerritoryIt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCcp.php b/vendor/fisharebest/localization/src/Locale/LocaleCcp.php deleted file mode 100644 index 0e44940b72..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCcp.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCcp; - -/** - * Class LocaleCcp - Chakma - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCcp extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return '𑄌𑄋𑄴𑄟𑄳𑄦'; - } - - public function language() - { - return new LanguageCcp(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCcpBd.php b/vendor/fisharebest/localization/src/Locale/LocaleCcpBd.php deleted file mode 100644 index ee4bf761c9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCcpBd.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCcpBd - Chakma - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCcpBd extends LocaleCcp -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCcpIn.php b/vendor/fisharebest/localization/src/Locale/LocaleCcpIn.php deleted file mode 100644 index 3c0aea585b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCcpIn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LocaleCcpIn - Chakma - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCcpIn extends LocaleCcp -{ - public function territory() - { - return new TerritoryIn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCe.php b/vendor/fisharebest/localization/src/Locale/LocaleCe.php deleted file mode 100644 index 3244c9137e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCe.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCe; - -/** - * Class LocaleCe - Chechen - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'нохчийн'; - } - - public function endonymSortable() - { - return 'НОХЧИЙН'; - } - - public function language() - { - return new LanguageCe(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCeLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleCeLatn.php deleted file mode 100644 index 939f32b3c7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCeLatn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleCeLatn - Chechen - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCeLatn extends LocaleCe -{ - public function endonym() - { - return 'Chechen'; - } - - public function endonymSortable() - { - return 'CHECHEN'; - } - - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCeRu.php b/vendor/fisharebest/localization/src/Locale/LocaleCeRu.php deleted file mode 100644 index 9b8302e355..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCeRu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCeRu - Chechen - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCeRu extends LocaleCe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCgg.php b/vendor/fisharebest/localization/src/Locale/LocaleCgg.php deleted file mode 100644 index a092b2f5d9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCgg.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCgg; - -/** - * Class LocaleCgg - Chiga - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCgg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Rukiga'; - } - - public function endonymSortable() - { - return 'RUKIGA'; - } - - public function language() - { - return new LanguageCgg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCggUg.php b/vendor/fisharebest/localization/src/Locale/LocaleCggUg.php deleted file mode 100644 index bd67776621..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCggUg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCggUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCggUg extends LocaleCgg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleChr.php b/vendor/fisharebest/localization/src/Locale/LocaleChr.php deleted file mode 100644 index a2231c03d6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleChr.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageChr; - -/** - * Class LocaleChr - Cherokee - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleChr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ᏣᎳᎩ'; - } - - public function language() - { - return new LanguageChr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleChrUs.php b/vendor/fisharebest/localization/src/Locale/LocaleChrUs.php deleted file mode 100644 index 9fa3a80eae..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleChrUs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleChrUs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleChrUs extends LocaleChr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCkb.php b/vendor/fisharebest/localization/src/Locale/LocaleCkb.php deleted file mode 100644 index 7f36039051..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCkb.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCkb; - -/** - * Class LocaleCkb - Sorani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCkb extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'کوردیی ناوەندی'; - } - - public function language() - { - return new LanguageCkb(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::RTL_MARK . self::HYPHEN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCkbIq.php b/vendor/fisharebest/localization/src/Locale/LocaleCkbIq.php deleted file mode 100644 index 3c59c96ce9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCkbIq.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCkb - Sorani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCkbIq extends LocaleCkb -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCkbIr.php b/vendor/fisharebest/localization/src/Locale/LocaleCkbIr.php deleted file mode 100644 index f65dbc1556..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCkbIr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIr; - -/** - * Class LocaleCkbIr - Sorani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCkbIr extends LocaleCkb -{ - public function territory() - { - return new TerritoryIr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCs.php b/vendor/fisharebest/localization/src/Locale/LocaleCs.php deleted file mode 100644 index 3f46f4724a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCs.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCs; - -/** - * Class LocaleCs - Czech - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCs extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'czech_ci'; - } - - public function endonym() - { - return 'čeština'; - } - - public function endonymSortable() - { - return 'CESTINA'; - } - - public function language() - { - return new LanguageCs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCsCz.php b/vendor/fisharebest/localization/src/Locale/LocaleCsCz.php deleted file mode 100644 index 408311a26a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCsCz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCsCz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCsCz extends LocaleCs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCu.php b/vendor/fisharebest/localization/src/Locale/LocaleCu.php deleted file mode 100644 index d032c65137..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCu.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCu; - -/** - * Class LocaleCu - Old Church Slavonic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'церковнослове́нскїй'; - } - - public function endonymSortable() - { - return 'ЦЕРКОВНОСЛОВЕ́НСКЇЙ'; - } - - public function language() - { - return new LanguageCu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCuGlag.php b/vendor/fisharebest/localization/src/Locale/LocaleCuGlag.php deleted file mode 100644 index fc908f9818..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCuGlag.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptGlag; - -/** - * Class LocaleCuGlag - Old Church Slavonic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCuGlag extends LocaleCu -{ - public function endonym() - { - return 'ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ'; - } - - public function endonymSortable() - { - return 'ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ'; - } - - public function script() - { - return new ScriptGlag(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCuRu.php b/vendor/fisharebest/localization/src/Locale/LocaleCuRu.php deleted file mode 100644 index fbf82a2cb1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCuRu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCuRu - Old Church Slavonic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCuRu extends LocaleCu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCy.php b/vendor/fisharebest/localization/src/Locale/LocaleCy.php deleted file mode 100644 index 6783c4407e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCy.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageCy; - -/** - * Class LocaleCy - Welsh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Cymraeg'; - } - - public function endonymSortable() - { - return 'CYMRAEG'; - } - - public function language() - { - return new LanguageCy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleCyGb.php b/vendor/fisharebest/localization/src/Locale/LocaleCyGb.php deleted file mode 100644 index 2e18d5773c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleCyGb.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleCyGb - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleCyGb extends LocaleCy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDa.php b/vendor/fisharebest/localization/src/Locale/LocaleDa.php deleted file mode 100644 index c63ca5c9cc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDa.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDa; - -/** - * Class LocaleDa - Danish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDa extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'danish_ci'; - } - - public function endonym() - { - return 'dansk'; - } - - public function endonymSortable() - { - return 'DANSK'; - } - - public function language() - { - return new LanguageDa(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDaDk.php b/vendor/fisharebest/localization/src/Locale/LocaleDaDk.php deleted file mode 100644 index b0eaa5095c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDaDk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDaDk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDaDk extends LocaleDa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDaGl.php b/vendor/fisharebest/localization/src/Locale/LocaleDaGl.php deleted file mode 100644 index 1cc1a4431c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDaGl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGl; - -/** - * Class LocaleDaGl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDaGl extends LocaleDa -{ - public function territory() - { - return new TerritoryGl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDav.php b/vendor/fisharebest/localization/src/Locale/LocaleDav.php deleted file mode 100644 index 1d35546c09..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDav.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDav; - -/** - * Class LocaleDav - Taita - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDav extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kitaita'; - } - - public function endonymSortable() - { - return 'KITAITA'; - } - - public function language() - { - return new LanguageDav(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDavKe.php b/vendor/fisharebest/localization/src/Locale/LocaleDavKe.php deleted file mode 100644 index d52fa6d56a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDavKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDavKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDavKe extends LocaleDav -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDe.php b/vendor/fisharebest/localization/src/Locale/LocaleDe.php deleted file mode 100644 index 4347660dc7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDe.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDe; - -/** - * Class LocaleDe - German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDe extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'german2_ci'; - } - - public function endonym() - { - return 'Deutsch'; - } - - public function endonymSortable() - { - return 'DEUTSCH'; - } - - public function language() - { - return new LanguageDe(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeAt.php b/vendor/fisharebest/localization/src/Locale/LocaleDeAt.php deleted file mode 100644 index c8d904347f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeAt.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAt; - -/** - * Class LocaleDeAt - Austrian German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeAt extends LocaleDe -{ - public function endonym() - { - return 'Österreichisches Deutsch'; - } - - public function endonymSortable() - { - return 'OSTERREICHISCHES DEUTSCH'; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryAt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeBe.php b/vendor/fisharebest/localization/src/Locale/LocaleDeBe.php deleted file mode 100644 index f4d54206db..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeBe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBe; - -/** - * Class LocaleDeBe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeBe extends LocaleDe -{ - public function territory() - { - return new TerritoryBe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeCh.php b/vendor/fisharebest/localization/src/Locale/LocaleDeCh.php deleted file mode 100644 index 357b00f2fd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeCh.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LocaleDeCh - Swiss High German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeCh extends LocaleDe -{ - public function endonym() - { - return 'Schweizer Hochdeutsch'; - } - - public function endonymSortable() - { - return 'SCHWEIZER HOCHDEUTSCH'; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::APOSTROPHE, - self::DECIMAL => self::DOT, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::PERCENT; - } - - public function territory() - { - return new TerritoryCh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeDe.php b/vendor/fisharebest/localization/src/Locale/LocaleDeDe.php deleted file mode 100644 index 6f6880cac0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeDe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDeDe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeDe extends LocaleDe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeIt.php b/vendor/fisharebest/localization/src/Locale/LocaleDeIt.php deleted file mode 100644 index 6a2fc43386..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeIt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIt; - -/** - * Class LocaleDeCh - Swiss High German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeIt extends LocaleDe -{ - public function territory() - { - return new TerritoryIt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeLi.php b/vendor/fisharebest/localization/src/Locale/LocaleDeLi.php deleted file mode 100644 index fbfb3981e7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeLi.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLi; - -/** - * Class LocaleDeLi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeLi extends LocaleDe -{ - public function territory() - { - return new TerritoryLi(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::APOSTROPHE, - self::DECIMAL => self::DOT, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDeLu.php b/vendor/fisharebest/localization/src/Locale/LocaleDeLu.php deleted file mode 100644 index e95d62bf86..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDeLu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLu; - -/** - * Class LocaleDeLu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDeLu extends LocaleDe -{ - public function territory() - { - return new TerritoryLu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDje.php b/vendor/fisharebest/localization/src/Locale/LocaleDje.php deleted file mode 100644 index d36eeabd2e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDje.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDje; - -/** - * Class LocaleDje - Zarma - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDje extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Zarmaciine'; - } - - public function endonymSortable() - { - return 'ZARMACIINE'; - } - - public function language() - { - return new LanguageDje(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDjeNe.php b/vendor/fisharebest/localization/src/Locale/LocaleDjeNe.php deleted file mode 100644 index 9ed2b2c630..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDjeNe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDjeNe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDjeNe extends LocaleDje -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDsb.php b/vendor/fisharebest/localization/src/Locale/LocaleDsb.php deleted file mode 100644 index ae17251c2b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDsb.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDsb; - -/** - * Class LocaleDsb - Lower Sorbian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDsb extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'dolnoserbšćina'; - } - - public function endonymSortable() - { - return 'DOLNOSERBSCINA'; - } - - public function language() - { - return new LanguageDsb(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDsbDe.php b/vendor/fisharebest/localization/src/Locale/LocaleDsbDe.php deleted file mode 100644 index 113e5b1bb4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDsbDe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDsbDe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDsbDe extends LocaleDsb -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDua.php b/vendor/fisharebest/localization/src/Locale/LocaleDua.php deleted file mode 100644 index d08b82bfcd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDua.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDua; - -/** - * Class LocaleDua - Duala - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDua extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'duálá'; - } - - public function endonymSortable() - { - return 'DUALA'; - } - - public function language() - { - return new LanguageDua(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDuaCm.php b/vendor/fisharebest/localization/src/Locale/LocaleDuaCm.php deleted file mode 100644 index 758d7ddd43..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDuaCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDuaCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDuaCm extends LocaleDua -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDv.php b/vendor/fisharebest/localization/src/Locale/LocaleDv.php deleted file mode 100644 index ec331176ad..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDv.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDv; - -/** - * Class LocaleDv - Divehi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDv extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ތާނަ'; - } - - public function language() - { - return new LanguageDv(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDyo.php b/vendor/fisharebest/localization/src/Locale/LocaleDyo.php deleted file mode 100644 index 238b034cd9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDyo.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDyo; - -/** - * Class LocaleDyo - Jola-Fonyi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDyo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'joola'; - } - - public function endonymSortable() - { - return 'JOOLA'; - } - - public function language() - { - return new LanguageDyo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDyoSn.php b/vendor/fisharebest/localization/src/Locale/LocaleDyoSn.php deleted file mode 100644 index ade37dc6eb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDyoSn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDyoSn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDyoSn extends LocaleDyo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDz.php b/vendor/fisharebest/localization/src/Locale/LocaleDz.php deleted file mode 100644 index 6acb6669d9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDz.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageDz; - -/** - * Class LocaleDz - Dzongkha - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDz extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'རྫོང་ཁ'; - } - - public function language() - { - return new LanguageDz(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleDzBt.php b/vendor/fisharebest/localization/src/Locale/LocaleDzBt.php deleted file mode 100644 index 5e5fec644e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleDzBt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDzBt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleDzBt extends LocaleDz -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEbu.php b/vendor/fisharebest/localization/src/Locale/LocaleEbu.php deleted file mode 100644 index eb43d515c9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEbu.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEbu; - -/** - * Class LocaleEbu - Embu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEbu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kĩembu'; - } - - public function endonymSortable() - { - return 'KIEMBU'; - } - - public function language() - { - return new LanguageEbu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEbuKe.php b/vendor/fisharebest/localization/src/Locale/LocaleEbuKe.php deleted file mode 100644 index beeb069131..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEbuKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEbuKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEbuKe extends LocaleEbu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEe.php b/vendor/fisharebest/localization/src/Locale/LocaleEe.php deleted file mode 100644 index 6e302ea43d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEe.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEe; - -/** - * Class LocaleEe - Ewe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Eʋegbe'; - } - - public function endonymSortable() - { - return 'EWEGBE'; - } - - public function language() - { - return new LanguageEe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEeGh.php b/vendor/fisharebest/localization/src/Locale/LocaleEeGh.php deleted file mode 100644 index f29a8f25a9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEeGh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEeGh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEeGh extends LocaleEe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEeTg.php b/vendor/fisharebest/localization/src/Locale/LocaleEeTg.php deleted file mode 100644 index 75737d575c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEeTg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTg; - -/** - * Class LocaleEeTg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEeTg extends LocaleEe -{ - public function territory() - { - return new TerritoryTg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEl.php b/vendor/fisharebest/localization/src/Locale/LocaleEl.php deleted file mode 100644 index 14a0900ccb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEl.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEl; - -/** - * Class LocaleEl - Greek - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEl extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ελληνικά'; - } - - public function endonymSortable() - { - return 'ΕΛΛΗΝΙΚΆ'; - } - - public function language() - { - return new LanguageEl(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleElCy.php b/vendor/fisharebest/localization/src/Locale/LocaleElCy.php deleted file mode 100644 index 852ec6421f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleElCy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCy; - -/** - * Class LocaleElCy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleElCy extends LocaleEl -{ - public function territory() - { - return new TerritoryCy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleElGr.php b/vendor/fisharebest/localization/src/Locale/LocaleElGr.php deleted file mode 100644 index 67087724f8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleElGr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleElGr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleElGr extends LocaleEl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEn.php b/vendor/fisharebest/localization/src/Locale/LocaleEn.php deleted file mode 100644 index 9b1013a85f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEn; - -/** - * Class LocaleEn - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'English'; - } - - public function endonymSortable() - { - return 'ENGLISH'; - } - - public function language() - { - return new LanguageEn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEn001.php b/vendor/fisharebest/localization/src/Locale/LocaleEn001.php deleted file mode 100644 index 15ccc89613..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEn001.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEn001 - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEn001 extends LocaleEn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEn150.php b/vendor/fisharebest/localization/src/Locale/LocaleEn150.php deleted file mode 100644 index 4c48b98c27..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEn150.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\Territory150; - -/** - * Class LocaleEn150 - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEn150 extends LocaleEn -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new Territory150(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnAg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnAg.php deleted file mode 100644 index 68d28ff81f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnAg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAg; - -/** - * Class LocaleEnAg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnAg extends LocaleEn -{ - public function territory() - { - return new TerritoryAg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnAi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnAi.php deleted file mode 100644 index 24dd7d4b00..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnAi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAi; - -/** - * Class LocaleEnAi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnAi extends LocaleEn -{ - public function territory() - { - return new TerritoryAi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnAs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnAs.php deleted file mode 100644 index 2f3f108ffe..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnAs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAs; - -/** - * Class LocaleEnAs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnAs extends LocaleEn -{ - public function territory() - { - return new TerritoryAs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnAt.php b/vendor/fisharebest/localization/src/Locale/LocaleEnAt.php deleted file mode 100644 index 2cae5b79b1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnAt.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAt; - -/** - * Class LocaleEnAt - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnAt extends LocaleEn -{ - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } - - public function territory() - { - return new TerritoryAt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnAu.php b/vendor/fisharebest/localization/src/Locale/LocaleEnAu.php deleted file mode 100644 index 7e22a70bba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnAu.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAu; - -/** - * Class LocaleEnAu - Australian English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnAu extends LocaleEn -{ - public function endonym() - { - return 'Australian English'; - } - - public function endonymSortable() - { - return 'ENGLISH, AUSTRALIAN'; - } - - public function territory() - { - return new TerritoryAu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBb.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBb.php deleted file mode 100644 index a0cc3f196b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBb.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBb; - -/** - * Class LocaleEnBb - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBb extends LocaleEn -{ - public function territory() - { - return new TerritoryBb(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBe.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBe.php deleted file mode 100644 index 8ebc6e3f63..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBe.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBe; - -/** - * Class LocaleEnBe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBe extends LocaleEn -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryBe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBi.php deleted file mode 100644 index 817eadea3a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBi; - -/** - * Class LocaleEnBi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBi extends LocaleEn -{ - public function territory() - { - return new TerritoryBi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBm.php deleted file mode 100644 index be98669106..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBm; - -/** - * Class LocaleEnBm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBm extends LocaleEn -{ - public function territory() - { - return new TerritoryBm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBs.php deleted file mode 100644 index fd7f85103a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBs; - -/** - * Class LocaleEnBs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBs extends LocaleEn -{ - public function territory() - { - return new TerritoryBs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBw.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBw.php deleted file mode 100644 index f05fd5fe6c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBw; - -/** - * Class LocaleEnBw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBw extends LocaleEn -{ - public function territory() - { - return new TerritoryBw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnBz.php b/vendor/fisharebest/localization/src/Locale/LocaleEnBz.php deleted file mode 100644 index dfd6d2bf27..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnBz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBz; - -/** - * Class LocaleEnBz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnBz extends LocaleEn -{ - public function territory() - { - return new TerritoryBz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCa.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCa.php deleted file mode 100644 index 2a6a6aa592..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCa; - -/** - * Class LocaleEnCa - Canadian English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCa extends LocaleEn -{ - public function endonym() - { - return 'Canadian English'; - } - - public function endonymSortable() - { - return 'ENGLISH, CANADIAN'; - } - - public function territory() - { - return new TerritoryCa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCc.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCc.php deleted file mode 100644 index 552bb0278c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCc; - -/** - * Class LocaleEnCc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCc extends LocaleEn -{ - public function territory() - { - return new TerritoryCc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCh.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCh.php deleted file mode 100644 index 45bfa6f425..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LocaleEnCh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCh extends LocaleEn -{ - public function territory() - { - return new TerritoryCh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCk.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCk.php deleted file mode 100644 index a761b9cc91..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCk; - -/** - * Class LocaleEnCk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCk extends LocaleEn -{ - public function territory() - { - return new TerritoryCk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCm.php deleted file mode 100644 index ad104fc23d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LocaleEnCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCm extends LocaleEn -{ - public function territory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCx.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCx.php deleted file mode 100644 index ce6be31a89..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCx.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCx; - -/** - * Class LocaleEnCx - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCx extends LocaleEn -{ - public function territory() - { - return new TerritoryCx(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnCy.php b/vendor/fisharebest/localization/src/Locale/LocaleEnCy.php deleted file mode 100644 index fdc005077f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnCy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCy; - -/** - * Class LocaleEnCy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnCy extends LocaleEn -{ - public function territory() - { - return new TerritoryCy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnDe.php b/vendor/fisharebest/localization/src/Locale/LocaleEnDe.php deleted file mode 100644 index 70bbb9a400..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnDe.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDe; - -/** - * Class LocaleEnDe - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnDe extends LocaleEn -{ - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } - - public function territory() - { - return new TerritoryDe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnDg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnDg.php deleted file mode 100644 index 84e4c8c1c0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnDg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDg; - -/** - * Class LocaleEnDg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnDg extends LocaleEn -{ - public function territory() - { - return new TerritoryDg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnDk.php b/vendor/fisharebest/localization/src/Locale/LocaleEnDk.php deleted file mode 100644 index f3fa6a8d1d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnDk.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDk; - -/** - * Class LocaleEnDe - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnDk extends LocaleEn -{ - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } - - public function territory() - { - return new TerritoryDk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnDm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnDm.php deleted file mode 100644 index cdc7c7c226..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnDm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDm; - -/** - * Class LocaleEnDm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnDm extends LocaleEn -{ - public function territory() - { - return new TerritoryDm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnEr.php b/vendor/fisharebest/localization/src/Locale/LocaleEnEr.php deleted file mode 100644 index fac22c7808..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnEr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEr; - -/** - * Class LocaleEnEr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnEr extends LocaleEn -{ - public function territory() - { - return new TerritoryEr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnFi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnFi.php deleted file mode 100644 index 5dcb2d4c10..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnFi.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LocaleEnDe - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnFi extends LocaleEn -{ - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } - - public function territory() - { - return new TerritoryFi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnFj.php b/vendor/fisharebest/localization/src/Locale/LocaleEnFj.php deleted file mode 100644 index 21ead091a5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnFj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFj; - -/** - * Class LocaleEnFj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnFj extends LocaleEn -{ - public function territory() - { - return new TerritoryFj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnFk.php b/vendor/fisharebest/localization/src/Locale/LocaleEnFk.php deleted file mode 100644 index 5885853d03..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnFk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFk; - -/** - * Class LocaleEnFk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnFk extends LocaleEn -{ - public function territory() - { - return new TerritoryFk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnFm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnFm.php deleted file mode 100644 index 6e785ca1a4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnFm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFm; - -/** - * Class LocaleEnFm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnFm extends LocaleEn -{ - public function territory() - { - return new TerritoryFm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGb.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGb.php deleted file mode 100644 index 4ddcd3d8da..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGb.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGb; - -/** - * Class LocaleEnGb - British English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGb extends LocaleEn -{ - public function endonym() - { - return 'British English'; - } - - public function endonymSortable() - { - return 'ENGLISH, BRITISH'; - } - - public function territory() - { - return new TerritoryGb(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGd.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGd.php deleted file mode 100644 index 425ed2c1fb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGd; - -/** - * Class LocaleEnGd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGd extends LocaleEn -{ - public function territory() - { - return new TerritoryGd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGg.php deleted file mode 100644 index 124c73aacf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGg; - -/** - * Class LocaleEnGg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGg extends LocaleEn -{ - public function territory() - { - return new TerritoryGg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGh.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGh.php deleted file mode 100644 index 995e8ffd63..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGh; - -/** - * Class LocaleEnGh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGh extends LocaleEn -{ - public function territory() - { - return new TerritoryGh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGi.php deleted file mode 100644 index ad062b0834..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGi; - -/** - * Class LocaleEnGi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGi extends LocaleEn -{ - public function territory() - { - return new TerritoryGi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGm.php deleted file mode 100644 index c4ca0da9f6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGm; - -/** - * Class LocaleEnGm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGm extends LocaleEn -{ - public function territory() - { - return new TerritoryGm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGu.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGu.php deleted file mode 100644 index 984316e3bb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGu; - -/** - * Class LocaleEnGu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGu extends LocaleEn -{ - public function territory() - { - return new TerritoryGu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnGy.php b/vendor/fisharebest/localization/src/Locale/LocaleEnGy.php deleted file mode 100644 index ff481741da..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnGy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGy; - -/** - * Class LocaleEnGy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnGy extends LocaleEn -{ - public function territory() - { - return new TerritoryGy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnHk.php b/vendor/fisharebest/localization/src/Locale/LocaleEnHk.php deleted file mode 100644 index 483c54d29d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnHk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryHk; - -/** - * Class LocaleEnHk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnHk extends LocaleEn -{ - public function territory() - { - return new TerritoryHk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnIe.php b/vendor/fisharebest/localization/src/Locale/LocaleEnIe.php deleted file mode 100644 index f6be369c80..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnIe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIe; - -/** - * Class LocaleEnIe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnIe extends LocaleEn -{ - public function territory() - { - return new TerritoryIe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnIl.php b/vendor/fisharebest/localization/src/Locale/LocaleEnIl.php deleted file mode 100644 index fbee882307..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnIl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIl; - -/** - * Class LocaleEnIl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnIl extends LocaleEn -{ - public function territory() - { - return new TerritoryIl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnIm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnIm.php deleted file mode 100644 index c9e2fece8f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnIm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIm; - -/** - * Class LocaleEnIm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnIm extends LocaleEn -{ - public function territory() - { - return new TerritoryIm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnIn.php b/vendor/fisharebest/localization/src/Locale/LocaleEnIn.php deleted file mode 100644 index f3d1bce4d3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnIn.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LocaleEnIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnIn extends LocaleEn -{ - protected function digitsGroup() - { - return 2; - } - - public function territory() - { - return new TerritoryIn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnIo.php b/vendor/fisharebest/localization/src/Locale/LocaleEnIo.php deleted file mode 100644 index 6668520c49..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnIo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIo; - -/** - * Class LocaleEnIo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnIo extends LocaleEn -{ - public function territory() - { - return new TerritoryIo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnJe.php b/vendor/fisharebest/localization/src/Locale/LocaleEnJe.php deleted file mode 100644 index db88621da2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnJe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryJe; - -/** - * Class LocaleEnJe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnJe extends LocaleEn -{ - public function territory() - { - return new TerritoryJe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnJm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnJm.php deleted file mode 100644 index 9cf58af4d0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnJm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryJm; - -/** - * Class LocaleEnJm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnJm extends LocaleEn -{ - public function territory() - { - return new TerritoryJm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnKe.php b/vendor/fisharebest/localization/src/Locale/LocaleEnKe.php deleted file mode 100644 index e7bc3c8060..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnKe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LocaleEnKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnKe extends LocaleEn -{ - public function territory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnKi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnKi.php deleted file mode 100644 index fecd172363..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnKi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKi; - -/** - * Class LocaleEnKi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnKi extends LocaleEn -{ - public function territory() - { - return new TerritoryKi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnKn.php b/vendor/fisharebest/localization/src/Locale/LocaleEnKn.php deleted file mode 100644 index 76dfcf8d0f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnKn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKn; - -/** - * Class LocaleEnKn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnKn extends LocaleEn -{ - public function territory() - { - return new TerritoryKn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnKy.php b/vendor/fisharebest/localization/src/Locale/LocaleEnKy.php deleted file mode 100644 index e8c82fdf7b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnKy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKy; - -/** - * Class LocaleEnKy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnKy extends LocaleEn -{ - public function territory() - { - return new TerritoryKy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnLc.php b/vendor/fisharebest/localization/src/Locale/LocaleEnLc.php deleted file mode 100644 index b3914c53da..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnLc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLc; - -/** - * Class LocaleEnLc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnLc extends LocaleEn -{ - public function territory() - { - return new TerritoryLc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnLr.php b/vendor/fisharebest/localization/src/Locale/LocaleEnLr.php deleted file mode 100644 index 0e7c7ad558..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnLr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLr; - -/** - * Class LocaleEnLr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnLr extends LocaleEn -{ - public function territory() - { - return new TerritoryLr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnLs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnLs.php deleted file mode 100644 index a537a62156..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnLs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLs; - -/** - * Class LocaleEnLs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnLs extends LocaleEn -{ - public function territory() - { - return new TerritoryLs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMg.php deleted file mode 100644 index 72a9336673..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMg; - -/** - * Class LocaleEnMg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMg extends LocaleEn -{ - public function territory() - { - return new TerritoryMg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMh.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMh.php deleted file mode 100644 index a8d8359e7d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMh; - -/** - * Class LocaleEnMh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMh extends LocaleEn -{ - public function territory() - { - return new TerritoryMh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMo.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMo.php deleted file mode 100644 index 9765a903ce..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMo; - -/** - * Class LocaleEnMo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMo extends LocaleEn -{ - public function territory() - { - return new TerritoryMo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMp.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMp.php deleted file mode 100644 index a200dc1ccd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMp.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMp; - -/** - * Class LocaleEnMp - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMp extends LocaleEn -{ - public function territory() - { - return new TerritoryMp(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMs.php deleted file mode 100644 index b113842e64..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMs; - -/** - * Class LocaleEnMs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMs extends LocaleEn -{ - public function territory() - { - return new TerritoryMs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMt.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMt.php deleted file mode 100644 index c8866d6b27..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMt; - -/** - * Class LocaleEnMt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMt extends LocaleEn -{ - public function territory() - { - return new TerritoryMt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMu.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMu.php deleted file mode 100644 index 92d0b1bacc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMu; - -/** - * Class LocaleEnMu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMu extends LocaleEn -{ - public function territory() - { - return new TerritoryMu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMw.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMw.php deleted file mode 100644 index 8206c0987b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMw; - -/** - * Class LocaleEnMw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMw extends LocaleEn -{ - public function territory() - { - return new TerritoryMw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnMy.php b/vendor/fisharebest/localization/src/Locale/LocaleEnMy.php deleted file mode 100644 index 5365908486..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnMy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMy; - -/** - * Class LocaleEnMy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnMy extends LocaleEn -{ - public function territory() - { - return new TerritoryMy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNa.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNa.php deleted file mode 100644 index 5263ccb919..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNa; - -/** - * Class LocaleEnNa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNa extends LocaleEn -{ - public function territory() - { - return new TerritoryNa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNf.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNf.php deleted file mode 100644 index 23dd3eb494..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNf; - -/** - * Class LocaleEnNf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNf extends LocaleEn -{ - public function territory() - { - return new TerritoryNf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNg.php deleted file mode 100644 index 369d278c43..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LocaleEnNg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNg extends LocaleEn -{ - public function territory() - { - return new TerritoryNg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNl.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNl.php deleted file mode 100644 index 7ba091a29f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNl; - -/** - * Class LocaleEnNl - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNl extends LocaleEn -{ - public function territory() - { - return new TerritoryNl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNr.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNr.php deleted file mode 100644 index a10668d21c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNr; - -/** - * Class LocaleEnNr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNr extends LocaleEn -{ - public function territory() - { - return new TerritoryNr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNu.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNu.php deleted file mode 100644 index 149c556ec0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNu; - -/** - * Class LocaleEnNu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNu extends LocaleEn -{ - public function territory() - { - return new TerritoryNu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnNz.php b/vendor/fisharebest/localization/src/Locale/LocaleEnNz.php deleted file mode 100644 index 032744eb4e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnNz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNz; - -/** - * Class LocaleEnNz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnNz extends LocaleEn -{ - public function territory() - { - return new TerritoryNz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnPg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnPg.php deleted file mode 100644 index bf21ded3c3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnPg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPg; - -/** - * Class LocaleEnPg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnPg extends LocaleEn -{ - public function territory() - { - return new TerritoryPg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnPh.php b/vendor/fisharebest/localization/src/Locale/LocaleEnPh.php deleted file mode 100644 index 38053aeb8c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnPh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPh; - -/** - * Class LocaleEnPh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnPh extends LocaleEn -{ - public function territory() - { - return new TerritoryPh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnPk.php b/vendor/fisharebest/localization/src/Locale/LocaleEnPk.php deleted file mode 100644 index 127bbae072..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnPk.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPk; - -/** - * Class LocaleEnPk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnPk extends LocaleEn -{ - protected function digitsGroup() - { - return 2; - } - - public function territory() - { - return new TerritoryPk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnPn.php b/vendor/fisharebest/localization/src/Locale/LocaleEnPn.php deleted file mode 100644 index 40fd8c04b9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnPn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPn; - -/** - * Class LocaleEnPn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnPn extends LocaleEn -{ - public function territory() - { - return new TerritoryPn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnPr.php b/vendor/fisharebest/localization/src/Locale/LocaleEnPr.php deleted file mode 100644 index b7e667075a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnPr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPr; - -/** - * Class LocaleEnPr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnPr extends LocaleEn -{ - public function territory() - { - return new TerritoryPr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnPw.php b/vendor/fisharebest/localization/src/Locale/LocaleEnPw.php deleted file mode 100644 index 907bc1a726..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnPw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPw; - -/** - * Class LocaleEnPw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnPw extends LocaleEn -{ - public function territory() - { - return new TerritoryPw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnRw.php b/vendor/fisharebest/localization/src/Locale/LocaleEnRw.php deleted file mode 100644 index 6e6685c0c5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnRw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryRw; - -/** - * Class LocaleEnRw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnRw extends LocaleEn -{ - public function territory() - { - return new TerritoryRw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSb.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSb.php deleted file mode 100644 index f3e30f3e0c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSb.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySb; - -/** - * Class LocaleEnSb - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSb extends LocaleEn -{ - public function territory() - { - return new TerritorySb(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSc.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSc.php deleted file mode 100644 index 98661a8521..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySc; - -/** - * Class LocaleEnSc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSc extends LocaleEn -{ - public function territory() - { - return new TerritorySc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSd.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSd.php deleted file mode 100644 index 01d48a02dc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySd; - -/** - * Class LocaleEnSd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSd extends LocaleEn -{ - public function territory() - { - return new TerritorySd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSe.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSe.php deleted file mode 100644 index 781b8aa381..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSe.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySe; - -/** - * Class LocaleEnDe - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSe extends LocaleEn -{ - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } - - public function territory() - { - return new TerritorySe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSg.php deleted file mode 100644 index afaede015b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySg; - -/** - * Class LocaleEnSg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSg extends LocaleEn -{ - public function territory() - { - return new TerritorySg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSh.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSh.php deleted file mode 100644 index 2903c59ad3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySh; - -/** - * Class LocaleEnSh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSh extends LocaleEn -{ - public function territory() - { - return new TerritorySh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSi.php deleted file mode 100644 index b6dfb006cf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySi; - -/** - * Class LocaleEnSi - English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSi extends LocaleEn -{ - public function territory() - { - return new TerritorySi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSl.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSl.php deleted file mode 100644 index f2d717819b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySl; - -/** - * Class LocaleEnSl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSl extends LocaleEn -{ - public function territory() - { - return new TerritorySl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSs.php deleted file mode 100644 index e5d582812a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySs; - -/** - * Class LocaleEnSs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSs extends LocaleEn -{ - public function territory() - { - return new TerritorySs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSx.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSx.php deleted file mode 100644 index ba8ef8c50f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSx.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySx; - -/** - * Class LocaleEnSx - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSx extends LocaleEn -{ - public function territory() - { - return new TerritorySx(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnSz.php b/vendor/fisharebest/localization/src/Locale/LocaleEnSz.php deleted file mode 100644 index b342a81e57..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnSz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySz; - -/** - * Class LocaleEnSz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnSz extends LocaleEn -{ - public function territory() - { - return new TerritorySz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnTc.php b/vendor/fisharebest/localization/src/Locale/LocaleEnTc.php deleted file mode 100644 index cfaf75b86f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnTc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTc; - -/** - * Class LocaleEnTc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnTc extends LocaleEn -{ - public function territory() - { - return new TerritoryTc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnTk.php b/vendor/fisharebest/localization/src/Locale/LocaleEnTk.php deleted file mode 100644 index 0fdb923561..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnTk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTk; - -/** - * Class LocaleEnTk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnTk extends LocaleEn -{ - public function territory() - { - return new TerritoryTk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnTo.php b/vendor/fisharebest/localization/src/Locale/LocaleEnTo.php deleted file mode 100644 index 5753748d87..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnTo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTo; - -/** - * Class LocaleEnTo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnTo extends LocaleEn -{ - public function territory() - { - return new TerritoryTo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnTt.php b/vendor/fisharebest/localization/src/Locale/LocaleEnTt.php deleted file mode 100644 index 8ff048f545..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnTt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTt; - -/** - * Class LocaleEnTt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnTt extends LocaleEn -{ - public function territory() - { - return new TerritoryTt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnTv.php b/vendor/fisharebest/localization/src/Locale/LocaleEnTv.php deleted file mode 100644 index 1a7d596ef6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnTv.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTv; - -/** - * Class LocaleEnTv - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnTv extends LocaleEn -{ - public function territory() - { - return new TerritoryTv(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnTz.php b/vendor/fisharebest/localization/src/Locale/LocaleEnTz.php deleted file mode 100644 index 24c2c03e0f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnTz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LocaleEnTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnTz extends LocaleEn -{ - public function territory() - { - return new TerritoryTz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnUg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnUg.php deleted file mode 100644 index 4fc94c2fac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnUg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LocaleEnUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnUg extends LocaleEn -{ - public function territory() - { - return new TerritoryUg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnUm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnUm.php deleted file mode 100644 index 4501d92213..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnUm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUm; - -/** - * Class LocaleEnUm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnUm extends LocaleEn -{ - public function territory() - { - return new TerritoryUm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnUs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnUs.php deleted file mode 100644 index f8d23ae46e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnUs.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUs; - -/** - * Class LocaleEnUs - American English - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnUs extends LocaleEn -{ - public function endonym() - { - return 'American English'; - } - - public function endonymSortable() - { - return 'ENGLISH, AMERICAN'; - } - - public function territory() - { - return new TerritoryUs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnUsPosix.php b/vendor/fisharebest/localization/src/Locale/LocaleEnUsPosix.php deleted file mode 100644 index 7b1f24ccc3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnUsPosix.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Variant\VariantPosix; - -/** - * Class LocaleEnUsPosix - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnUsPosix extends LocaleEnUs -{ - public function numberSymbols() - { - return array( - self::GROUP => '', - ); - } - - public function variant() - { - return new VariantPosix(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnVc.php b/vendor/fisharebest/localization/src/Locale/LocaleEnVc.php deleted file mode 100644 index f2792e27a2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnVc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVc; - -/** - * Class LocaleEnVc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnVc extends LocaleEn -{ - public function territory() - { - return new TerritoryVc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnVg.php b/vendor/fisharebest/localization/src/Locale/LocaleEnVg.php deleted file mode 100644 index 771c7cb3c6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnVg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVg; - -/** - * Class LocaleEnVg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnVg extends LocaleEn -{ - public function territory() - { - return new TerritoryVg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnVi.php b/vendor/fisharebest/localization/src/Locale/LocaleEnVi.php deleted file mode 100644 index 4fa5ad89bf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnVi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVi; - -/** - * Class LocaleEnVi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnVi extends LocaleEn -{ - public function territory() - { - return new TerritoryVi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnVu.php b/vendor/fisharebest/localization/src/Locale/LocaleEnVu.php deleted file mode 100644 index e6f67c76be..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnVu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVu; - -/** - * Class LocaleEnVu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnVu extends LocaleEn -{ - public function territory() - { - return new TerritoryVu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnWs.php b/vendor/fisharebest/localization/src/Locale/LocaleEnWs.php deleted file mode 100644 index 38b304abb4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnWs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryWs; - -/** - * Class LocaleEnWs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnWs extends LocaleEn -{ - public function territory() - { - return new TerritoryWs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnZa.php b/vendor/fisharebest/localization/src/Locale/LocaleEnZa.php deleted file mode 100644 index 412378143a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnZa.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LocaleEnZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnZa extends LocaleEn -{ - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryZa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnZm.php b/vendor/fisharebest/localization/src/Locale/LocaleEnZm.php deleted file mode 100644 index b2c601b90a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnZm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZm; - -/** - * Class LocaleEnZm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnZm extends LocaleEn -{ - public function territory() - { - return new TerritoryZm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEnZw.php b/vendor/fisharebest/localization/src/Locale/LocaleEnZw.php deleted file mode 100644 index ede643d1a6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEnZw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZw; - -/** - * Class LocaleEnZw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEnZw extends LocaleEn -{ - public function territory() - { - return new TerritoryZw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEo.php b/vendor/fisharebest/localization/src/Locale/LocaleEo.php deleted file mode 100644 index 222e8fe11f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEo.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEo; - -/** - * Class LocaleEo - Esperanto - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEo extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'esperanto_ci'; - } - - public function endonym() - { - return 'esperanto'; - } - - public function endonymSortable() - { - return 'ESPERANTO'; - } - - public function language() - { - return new LanguageEo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEo001.php b/vendor/fisharebest/localization/src/Locale/LocaleEo001.php deleted file mode 100644 index f0861a1913..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEo001.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEo001 - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEo001 extends LocaleEo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEs.php b/vendor/fisharebest/localization/src/Locale/LocaleEs.php deleted file mode 100644 index 337908666e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEs.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEs; -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LocaleEs - Spanish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEs extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'spanish_ci'; - } - - public function endonym() - { - return 'español'; - } - - public function endonymSortable() - { - return 'ESPANOL'; - } - - public function language() - { - return new LanguageEs(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } - - public function territory() - { - return new TerritoryEs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEs419.php b/vendor/fisharebest/localization/src/Locale/LocaleEs419.php deleted file mode 100644 index ea504f21c8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEs419.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\Territory419; - -/** - * Class LocaleEs419 - Latin American Spanish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEs419 extends LocaleEs -{ - public function endonym() - { - return 'español latinoamericano'; - } - - public function endonymSortable() - { - return 'ESPANOL LATINOAMERICANO'; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::COMMA, - self::DECIMAL => self::DOT, - ); - } - - public function territory() - { - return new Territory419(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsAr.php b/vendor/fisharebest/localization/src/Locale/LocaleEsAr.php deleted file mode 100644 index 96ae99a977..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsAr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAr; - -/** - * Class LocaleEsAr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsAr extends LocaleEs -{ - public function territory() - { - return new TerritoryAr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsBo.php b/vendor/fisharebest/localization/src/Locale/LocaleEsBo.php deleted file mode 100644 index ef4861e9e3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsBo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBo; - -/** - * Class LocaleEsBo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsBo extends LocaleEs -{ - public function territory() - { - return new TerritoryBo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsBr.php b/vendor/fisharebest/localization/src/Locale/LocaleEsBr.php deleted file mode 100644 index b780d49e2a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsBr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBr; - -/** - * Class LocaleEsBr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsBr extends LocaleEs -{ - public function territory() - { - return new TerritoryBr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsBz.php b/vendor/fisharebest/localization/src/Locale/LocaleEsBz.php deleted file mode 100644 index 1eb212f640..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsBz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBz; - -/** - * Class LocaleEsBz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsBz extends LocaleEs -{ - public function territory() - { - return new TerritoryBz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsCl.php b/vendor/fisharebest/localization/src/Locale/LocaleEsCl.php deleted file mode 100644 index 58f10e6d33..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsCl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCl; - -/** - * Class LocaleEsCl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsCl extends LocaleEs -{ - public function territory() - { - return new TerritoryCl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsCo.php b/vendor/fisharebest/localization/src/Locale/LocaleEsCo.php deleted file mode 100644 index 73fc5648aa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsCo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCo; - -/** - * Class LocaleEsCo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsCo extends LocaleEs -{ - public function territory() - { - return new TerritoryCo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsCr.php b/vendor/fisharebest/localization/src/Locale/LocaleEsCr.php deleted file mode 100644 index 847dd60d95..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsCr.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCr; - -/** - * Class LocaleEsCr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsCr extends LocaleEs -{ - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryCr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsCu.php b/vendor/fisharebest/localization/src/Locale/LocaleEsCu.php deleted file mode 100644 index 8e76643545..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsCu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCu; - -/** - * Class LocaleEsCu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsCu extends LocaleEs -{ - public function territory() - { - return new TerritoryCu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsDo.php b/vendor/fisharebest/localization/src/Locale/LocaleEsDo.php deleted file mode 100644 index d9b35049c8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsDo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDo; - -/** - * Class LocaleEsDo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsDo extends LocaleEs -{ - public function territory() - { - return new TerritoryDo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsEa.php b/vendor/fisharebest/localization/src/Locale/LocaleEsEa.php deleted file mode 100644 index 41a247031f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsEa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEa; - -/** - * Class LocaleEsEa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsEa extends LocaleEs -{ - public function territory() - { - return new TerritoryEa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsEc.php b/vendor/fisharebest/localization/src/Locale/LocaleEsEc.php deleted file mode 100644 index 48bd6f0697..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsEc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEc; - -/** - * Class LocaleEsEc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsEc extends LocaleEs -{ - public function territory() - { - return new TerritoryEc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsEs.php b/vendor/fisharebest/localization/src/Locale/LocaleEsEs.php deleted file mode 100644 index daf36f1cfb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsEs.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEs; - -/** - * Class LocaleEsEs - European Spanish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsEs extends LocaleEs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsGq.php b/vendor/fisharebest/localization/src/Locale/LocaleEsGq.php deleted file mode 100644 index 4a969a89b5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsGq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGq; - -/** - * Class LocaleEsGq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsGq extends LocaleEs -{ - public function territory() - { - return new TerritoryGq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsGt.php b/vendor/fisharebest/localization/src/Locale/LocaleEsGt.php deleted file mode 100644 index c1e70cf045..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsGt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGt; - -/** - * Class LocaleEsGt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsGt extends LocaleEs -{ - public function territory() - { - return new TerritoryGt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsHn.php b/vendor/fisharebest/localization/src/Locale/LocaleEsHn.php deleted file mode 100644 index 54c7afdb75..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsHn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryHn; - -/** - * Class LocaleEsHn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsHn extends LocaleEs -{ - public function territory() - { - return new TerritoryHn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsIc.php b/vendor/fisharebest/localization/src/Locale/LocaleEsIc.php deleted file mode 100644 index 9c6fee484f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsIc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIc; - -/** - * Class LocaleEsIc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsIc extends LocaleEs -{ - public function territory() - { - return new TerritoryIc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsMx.php b/vendor/fisharebest/localization/src/Locale/LocaleEsMx.php deleted file mode 100644 index 7436cdaae1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsMx.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMx; - -/** - * Class LocaleEsMx - Mexican Spanish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsMx extends LocaleEs -{ - public function endonym() - { - return 'español de México'; - } - - public function endonymSortable() - { - return 'ESPANOL DE MEXICO'; - } - - public function territory() - { - return new TerritoryMx(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsNi.php b/vendor/fisharebest/localization/src/Locale/LocaleEsNi.php deleted file mode 100644 index e101849875..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsNi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNi; - -/** - * Class LocaleEsNi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsNi extends LocaleEs -{ - public function territory() - { - return new TerritoryNi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsPa.php b/vendor/fisharebest/localization/src/Locale/LocaleEsPa.php deleted file mode 100644 index b310d138ba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsPa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPa; - -/** - * Class LocaleEsPa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsPa extends LocaleEs -{ - public function territory() - { - return new TerritoryPa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsPe.php b/vendor/fisharebest/localization/src/Locale/LocaleEsPe.php deleted file mode 100644 index d413d70cd5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsPe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPe; - -/** - * Class LocaleEsPe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsPe extends LocaleEs -{ - public function territory() - { - return new TerritoryPe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsPh.php b/vendor/fisharebest/localization/src/Locale/LocaleEsPh.php deleted file mode 100644 index 61a0fab265..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsPh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPh; - -/** - * Class LocaleEsPh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsPh extends LocaleEs -{ - public function territory() - { - return new TerritoryPh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsPr.php b/vendor/fisharebest/localization/src/Locale/LocaleEsPr.php deleted file mode 100644 index bc4f06d5e8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsPr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPr; - -/** - * Class LocaleEsPr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsPr extends LocaleEs -{ - public function territory() - { - return new TerritoryPr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsPy.php b/vendor/fisharebest/localization/src/Locale/LocaleEsPy.php deleted file mode 100644 index 98955393c5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsPy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPy; - -/** - * Class LocaleEsPy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsPy extends LocaleEs -{ - public function territory() - { - return new TerritoryPy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsSv.php b/vendor/fisharebest/localization/src/Locale/LocaleEsSv.php deleted file mode 100644 index 43c6378a3e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsSv.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySv; - -/** - * Class LocaleEsSv - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsSv extends LocaleEs -{ - public function territory() - { - return new TerritorySv(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsUs.php b/vendor/fisharebest/localization/src/Locale/LocaleEsUs.php deleted file mode 100644 index 91b40d2fa7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsUs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUs; - -/** - * Class LocaleEsUs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsUs extends LocaleEs -{ - public function territory() - { - return new TerritoryUs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsUy.php b/vendor/fisharebest/localization/src/Locale/LocaleEsUy.php deleted file mode 100644 index acfda1bf99..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsUy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUy; - -/** - * Class LocaleEsUy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsUy extends LocaleEs -{ - public function territory() - { - return new TerritoryUy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEsVe.php b/vendor/fisharebest/localization/src/Locale/LocaleEsVe.php deleted file mode 100644 index b1539110bb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEsVe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVe; - -/** - * Class LocaleEsVe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEsVe extends LocaleEs -{ - public function territory() - { - return new TerritoryVe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEt.php b/vendor/fisharebest/localization/src/Locale/LocaleEt.php deleted file mode 100644 index 79bdb7476c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEt.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEt; - -/** - * Class LocaleEt - Estonian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEt extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'estonian_ci'; - } - - public function endonym() - { - return 'eesti'; - } - - public function endonymSortable() - { - return 'EESTI'; - } - - public function language() - { - return new LanguageEt(); - } - - protected function minimumGroupingDigits() - { - return 3; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEtEe.php b/vendor/fisharebest/localization/src/Locale/LocaleEtEe.php deleted file mode 100644 index 0187b84c87..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEtEe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEtEe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEtEe extends LocaleEt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEu.php b/vendor/fisharebest/localization/src/Locale/LocaleEu.php deleted file mode 100644 index ff82b50727..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEu.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEu; - -/** - * Class LocaleEu - Basque - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'euskara'; - } - - public function endonymSortable() - { - return 'EUSKARA'; - } - - public function language() - { - return new LanguageEu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PERCENT . self::NBSP . '%s'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEuEs.php b/vendor/fisharebest/localization/src/Locale/LocaleEuEs.php deleted file mode 100644 index 80078690e5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEuEs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEuEs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEuEs extends LocaleEu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEwo.php b/vendor/fisharebest/localization/src/Locale/LocaleEwo.php deleted file mode 100644 index 0865c4d3cb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEwo.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageEwo; - -/** - * Class LocaleEwo - Ewondo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEwo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ewondo'; - } - - public function endonymSortable() - { - return 'EWONDO'; - } - - public function language() - { - return new LanguageEwo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleEwoCm.php b/vendor/fisharebest/localization/src/Locale/LocaleEwoCm.php deleted file mode 100644 index df5b7e13af..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleEwoCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleEwoCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleEwoCm extends LocaleEwo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFa.php b/vendor/fisharebest/localization/src/Locale/LocaleFa.php deleted file mode 100644 index 1168970cbd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFa.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFa; - -/** - * Class LocaleFa - Persian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFa extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'persian_ci'; - } - - public function endonym() - { - return 'فارسی'; - } - - public function language() - { - return new LanguageFa(); - } - - public function numerals() - { - return array('۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::LTR_MARK . self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFaAf.php b/vendor/fisharebest/localization/src/Locale/LocaleFaAf.php deleted file mode 100644 index a4f8a4b17f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFaAf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAf; - -/** - * Class LocaleFaAf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFaAf extends LocaleFa -{ - public function territory() - { - return new TerritoryAf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFaIr.php b/vendor/fisharebest/localization/src/Locale/LocaleFaIr.php deleted file mode 100644 index e3a4579b63..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFaIr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFaIr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFaIr extends LocaleFa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFf.php b/vendor/fisharebest/localization/src/Locale/LocaleFf.php deleted file mode 100644 index e3ce15115d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFf.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFf; - -/** - * Class LocaleFf - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFf extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Pulaar'; - } - - public function endonymSortable() - { - return 'PULAAR'; - } - - public function language() - { - return new LanguageFf(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatn.php deleted file mode 100644 index e951d7e49d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatn extends LocaleFf -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnBf.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnBf.php deleted file mode 100644 index f9d4dac404..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnBf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBf; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnBf extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryBf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnCm.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnCm.php deleted file mode 100644 index 1021d8ed15..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnCm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnCm extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGh.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGh.php deleted file mode 100644 index f756b10fdb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGh; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnGh extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryGh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGm.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGm.php deleted file mode 100644 index ecbcf5531c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGm; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnGm extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryGm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGn.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGn.php deleted file mode 100644 index f7d02a3517..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGn; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnGn extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryGn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGw.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGw.php deleted file mode 100644 index 62fc50ce18..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnGw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGw; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnGw extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryGw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnLr.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnLr.php deleted file mode 100644 index d6e4c5011d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnLr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLr; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnLr extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryLr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnMr.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnMr.php deleted file mode 100644 index 7ce9112eb5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnMr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMr; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnMr extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryMr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnNe.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnNe.php deleted file mode 100644 index 555fede7c8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnNe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNe; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnNe extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryNe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnNg.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnNg.php deleted file mode 100644 index 1e45627dd8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnNg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNg; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnNg extends LocaleFfLatn -{ - public function territory() - { - return new TerritoryNg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnSl.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnSl.php deleted file mode 100644 index 12f740b9d7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnSl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySl; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnSl extends LocaleFfLatn -{ - public function territory() - { - return new TerritorySl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnSn.php b/vendor/fisharebest/localization/src/Locale/LocaleFfLatnSn.php deleted file mode 100644 index 24cdafb13f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFfLatnSn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFfLatn - Fulah - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFfLatnSn extends LocaleFfLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFi.php b/vendor/fisharebest/localization/src/Locale/LocaleFi.php deleted file mode 100644 index 68af0853aa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFi.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFi; - -/** - * Class LocaleFi - Finnish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFi extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'swedish_ci'; - } - - public function endonym() - { - return 'suomi'; - } - - public function endonymSortable() - { - return 'SUOMI'; - } - - public function language() - { - return new LanguageFi(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFiFi.php b/vendor/fisharebest/localization/src/Locale/LocaleFiFi.php deleted file mode 100644 index 58bd3138ba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFiFi.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFiFi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFiFi extends LocaleFi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFil.php b/vendor/fisharebest/localization/src/Locale/LocaleFil.php deleted file mode 100644 index 126b9b785e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFil.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFil; - -/** - * Class LocaleFil - Filipino - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFil extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Filipino'; - } - - public function endonymSortable() - { - return 'FILIPINO'; - } - - public function language() - { - return new LanguageFil(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFilPh.php b/vendor/fisharebest/localization/src/Locale/LocaleFilPh.php deleted file mode 100644 index 1983abf16c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFilPh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFilPh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFilPh extends LocaleFil -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFo.php b/vendor/fisharebest/localization/src/Locale/LocaleFo.php deleted file mode 100644 index af5bb1d429..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFo.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFo; - -/** - * Class LocaleFo - Faroese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'føroyskt'; - } - - public function endonymSortable() - { - return 'FOROYSKT'; - } - - public function language() - { - return new LanguageFo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFoDk.php b/vendor/fisharebest/localization/src/Locale/LocaleFoDk.php deleted file mode 100644 index 8fac4fea8d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFoDk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDk; - -/** - * Class LocaleFoDk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFoDk extends LocaleFo -{ - public function territory() - { - return new TerritoryDk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFoFo.php b/vendor/fisharebest/localization/src/Locale/LocaleFoFo.php deleted file mode 100644 index 7a879b8859..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFoFo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFoFo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFoFo extends LocaleFo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFr.php b/vendor/fisharebest/localization/src/Locale/LocaleFr.php deleted file mode 100644 index 6869d6499a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFr.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFr; - -/** - * Class LocaleFr - French - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'français'; - } - - public function endonymSortable() - { - return 'FRANCAIS'; - } - - public function language() - { - return new LanguageFr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NARROW_NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrBe.php b/vendor/fisharebest/localization/src/Locale/LocaleFrBe.php deleted file mode 100644 index bd57a795ac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrBe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBe; - -/** - * Class LocaleFrBe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrBe extends LocaleFr -{ - public function territory() - { - return new TerritoryBe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrBf.php b/vendor/fisharebest/localization/src/Locale/LocaleFrBf.php deleted file mode 100644 index 8536314c9b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrBf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBf; - -/** - * Class LocaleFrBf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrBf extends LocaleFr -{ - public function territory() - { - return new TerritoryBf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrBi.php b/vendor/fisharebest/localization/src/Locale/LocaleFrBi.php deleted file mode 100644 index 573a7c81fa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrBi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBi; - -/** - * Class LocaleFrBi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrBi extends LocaleFr -{ - public function territory() - { - return new TerritoryBi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrBj.php b/vendor/fisharebest/localization/src/Locale/LocaleFrBj.php deleted file mode 100644 index f12b2c83be..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrBj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBj; - -/** - * Class LocaleFrBj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrBj extends LocaleFr -{ - public function territory() - { - return new TerritoryBj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrBl.php b/vendor/fisharebest/localization/src/Locale/LocaleFrBl.php deleted file mode 100644 index 1437fe62f7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrBl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBl; - -/** - * Class LocaleFrBl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrBl extends LocaleFr -{ - public function territory() - { - return new TerritoryBl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCa.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCa.php deleted file mode 100644 index 2092938bc5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCa.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCa; - -/** - * Class LocaleFrCa - Canadian French - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCa extends LocaleFr -{ - public function endonym() - { - return 'français canadien'; - } - - public function endonymSortable() - { - return 'FRANCAIS CANADIEN'; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryCa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCd.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCd.php deleted file mode 100644 index 8d96b3aceb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCd; - -/** - * Class LocaleFrCd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCd extends LocaleFr -{ - public function territory() - { - return new TerritoryCd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCf.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCf.php deleted file mode 100644 index 8c0fb825c5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCf; - -/** - * Class LocaleFrCf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCf extends LocaleFr -{ - public function territory() - { - return new TerritoryCf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCg.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCg.php deleted file mode 100644 index 5db84bffcf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCg; - -/** - * Class LocaleFrCg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCg extends LocaleFr -{ - public function territory() - { - return new TerritoryCg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCh.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCh.php deleted file mode 100644 index 580017e3cd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCh.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LocaleFrCh - Swiss French - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCh extends LocaleFr -{ - public function endonym() - { - return 'français suisse'; - } - - public function endonymSortable() - { - return 'FRANCAIS SUISSE'; - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::PERCENT; - } - - public function territory() - { - return new TerritoryCh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCi.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCi.php deleted file mode 100644 index e9710790da..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCi; - -/** - * Class LocaleFrCi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCi extends LocaleFr -{ - public function territory() - { - return new TerritoryCi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrCm.php b/vendor/fisharebest/localization/src/Locale/LocaleFrCm.php deleted file mode 100644 index f2230a4a5f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrCm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCm; - -/** - * Class LocaleFrCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrCm extends LocaleFr -{ - public function territory() - { - return new TerritoryCm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrDj.php b/vendor/fisharebest/localization/src/Locale/LocaleFrDj.php deleted file mode 100644 index 58dbb223df..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrDj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDj; - -/** - * Class LocaleFrDj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrDj extends LocaleFr -{ - public function territory() - { - return new TerritoryDj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrDz.php b/vendor/fisharebest/localization/src/Locale/LocaleFrDz.php deleted file mode 100644 index 1f87bd280d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrDz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDz; - -/** - * Class LocaleFrDz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrDz extends LocaleFr -{ - public function territory() - { - return new TerritoryDz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrFr.php b/vendor/fisharebest/localization/src/Locale/LocaleFrFr.php deleted file mode 100644 index f3c03d27d3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrFr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFrFr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrFr extends LocaleFr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrGa.php b/vendor/fisharebest/localization/src/Locale/LocaleFrGa.php deleted file mode 100644 index 54c7f9dc04..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrGa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGa; - -/** - * Class LocaleFrGa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrGa extends LocaleFr -{ - public function territory() - { - return new TerritoryGa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrGf.php b/vendor/fisharebest/localization/src/Locale/LocaleFrGf.php deleted file mode 100644 index a7d2bd1172..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrGf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGf; - -/** - * Class LocaleFrGf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrGf extends LocaleFr -{ - public function territory() - { - return new TerritoryGf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrGn.php b/vendor/fisharebest/localization/src/Locale/LocaleFrGn.php deleted file mode 100644 index 933adb446f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrGn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGn; - -/** - * Class LocaleFrGn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrGn extends LocaleFr -{ - public function territory() - { - return new TerritoryGn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrGp.php b/vendor/fisharebest/localization/src/Locale/LocaleFrGp.php deleted file mode 100644 index 8b46f4ceef..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrGp.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGp; - -/** - * Class LocaleFrGp - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrGp extends LocaleFr -{ - public function territory() - { - return new TerritoryGp(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrGq.php b/vendor/fisharebest/localization/src/Locale/LocaleFrGq.php deleted file mode 100644 index c66ed8c4c8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrGq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGq; - -/** - * Class LocaleFrGq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrGq extends LocaleFr -{ - public function territory() - { - return new TerritoryGq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrHt.php b/vendor/fisharebest/localization/src/Locale/LocaleFrHt.php deleted file mode 100644 index a1adef95c1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrHt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryHt; - -/** - * Class LocaleFrHt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrHt extends LocaleFr -{ - public function territory() - { - return new TerritoryHt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrKm.php b/vendor/fisharebest/localization/src/Locale/LocaleFrKm.php deleted file mode 100644 index e3e5a55b36..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrKm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKm; - -/** - * Class LocaleFrKm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrKm extends LocaleFr -{ - public function territory() - { - return new TerritoryKm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrLu.php b/vendor/fisharebest/localization/src/Locale/LocaleFrLu.php deleted file mode 100644 index fb439fdb37..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrLu.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLu; - -/** - * Class LocaleFrLu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrLu extends LocaleFr -{ - public function territory() - { - return new TerritoryLu(); - } - - public function numberSymbols() - { - return array( - self::DECIMAL => self::COMMA, - self::GROUP => self::DOT, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMa.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMa.php deleted file mode 100644 index 92471da08e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMa.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMa; - -/** - * Class LocaleFrMa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMa extends LocaleFr -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryMa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMc.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMc.php deleted file mode 100644 index 06cb1d9cc2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMc; - -/** - * Class LocaleFrMc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMc extends LocaleFr -{ - public function territory() - { - return new TerritoryMc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMf.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMf.php deleted file mode 100644 index b999483e46..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMf; - -/** - * Class LocaleFrMf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMf extends LocaleFr -{ - public function territory() - { - return new TerritoryMf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMg.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMg.php deleted file mode 100644 index a82002d5cb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMg; - -/** - * Class LocaleFrMg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMg extends LocaleFr -{ - public function territory() - { - return new TerritoryMg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMl.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMl.php deleted file mode 100644 index 6c549c373c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMl; - -/** - * Class LocaleFrMl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMl extends LocaleFr -{ - public function territory() - { - return new TerritoryMl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMq.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMq.php deleted file mode 100644 index 7ae0eafdaf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMq; - -/** - * Class LocaleFrMq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMq extends LocaleFr -{ - public function territory() - { - return new TerritoryMq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMr.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMr.php deleted file mode 100644 index c4041261f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMr; - -/** - * Class LocaleFrMr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMr extends LocaleFr -{ - public function territory() - { - return new TerritoryMr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrMu.php b/vendor/fisharebest/localization/src/Locale/LocaleFrMu.php deleted file mode 100644 index 322b89ba7b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrMu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMu; - -/** - * Class LocaleFrMu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrMu extends LocaleFr -{ - public function territory() - { - return new TerritoryMu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrNc.php b/vendor/fisharebest/localization/src/Locale/LocaleFrNc.php deleted file mode 100644 index 2e22bccca1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrNc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNc; - -/** - * Class LocaleFrNc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrNc extends LocaleFr -{ - public function territory() - { - return new TerritoryNc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrNe.php b/vendor/fisharebest/localization/src/Locale/LocaleFrNe.php deleted file mode 100644 index 0d90b2622f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrNe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNe; - -/** - * Class LocaleFrNe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrNe extends LocaleFr -{ - public function territory() - { - return new TerritoryNe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrPf.php b/vendor/fisharebest/localization/src/Locale/LocaleFrPf.php deleted file mode 100644 index 77e66cbab9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrPf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPf; - -/** - * Class LocaleFrPf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrPf extends LocaleFr -{ - public function territory() - { - return new TerritoryPf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrPm.php b/vendor/fisharebest/localization/src/Locale/LocaleFrPm.php deleted file mode 100644 index b3eccbdfdd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrPm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPm; - -/** - * Class LocaleFrPm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrPm extends LocaleFr -{ - public function territory() - { - return new TerritoryPm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrRe.php b/vendor/fisharebest/localization/src/Locale/LocaleFrRe.php deleted file mode 100644 index f3b971c39b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrRe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryRe; - -/** - * Class LocaleFrRe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrRe extends LocaleFr -{ - public function territory() - { - return new TerritoryRe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrRw.php b/vendor/fisharebest/localization/src/Locale/LocaleFrRw.php deleted file mode 100644 index 513d0c7850..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrRw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryRw; - -/** - * Class LocaleFrRw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrRw extends LocaleFr -{ - public function territory() - { - return new TerritoryRw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrSc.php b/vendor/fisharebest/localization/src/Locale/LocaleFrSc.php deleted file mode 100644 index 258e7cbd67..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrSc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySc; - -/** - * Class LocaleFrSc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrSc extends LocaleFr -{ - public function territory() - { - return new TerritorySc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrSn.php b/vendor/fisharebest/localization/src/Locale/LocaleFrSn.php deleted file mode 100644 index 6f87c2a8c2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrSn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySn; - -/** - * Class LocaleFrSn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrSn extends LocaleFr -{ - public function territory() - { - return new TerritorySn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrSy.php b/vendor/fisharebest/localization/src/Locale/LocaleFrSy.php deleted file mode 100644 index ef1c4ca912..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrSy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySy; - -/** - * Class LocaleFrSy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrSy extends LocaleFr -{ - public function territory() - { - return new TerritorySy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrTd.php b/vendor/fisharebest/localization/src/Locale/LocaleFrTd.php deleted file mode 100644 index 30625f2194..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrTd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTd; - -/** - * Class LocaleFrTd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrTd extends LocaleFr -{ - public function territory() - { - return new TerritoryTd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrTg.php b/vendor/fisharebest/localization/src/Locale/LocaleFrTg.php deleted file mode 100644 index 53aecaa0d8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrTg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTg; - -/** - * Class LocaleFrTg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrTg extends LocaleFr -{ - public function territory() - { - return new TerritoryTg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrTn.php b/vendor/fisharebest/localization/src/Locale/LocaleFrTn.php deleted file mode 100644 index b8084342e8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrTn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTn; - -/** - * Class LocaleFrTn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrTn extends LocaleFr -{ - public function territory() - { - return new TerritoryTn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrVu.php b/vendor/fisharebest/localization/src/Locale/LocaleFrVu.php deleted file mode 100644 index 645af14f4a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrVu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVu; - -/** - * Class LocaleFrVu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrVu extends LocaleFr -{ - public function territory() - { - return new TerritoryVu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrWf.php b/vendor/fisharebest/localization/src/Locale/LocaleFrWf.php deleted file mode 100644 index 3a3c183cf0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrWf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryWf; - -/** - * Class LocaleFrWf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrWf extends LocaleFr -{ - public function territory() - { - return new TerritoryWf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFrYt.php b/vendor/fisharebest/localization/src/Locale/LocaleFrYt.php deleted file mode 100644 index 27a9085a7b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFrYt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryYt; - -/** - * Class LocaleFrYt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFrYt extends LocaleFr -{ - public function territory() - { - return new TerritoryYt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFur.php b/vendor/fisharebest/localization/src/Locale/LocaleFur.php deleted file mode 100644 index 40dd76326c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFur.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFur; - -/** - * Class LocaleFur - Friulian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFur extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'furlan'; - } - - public function endonymSortable() - { - return 'FURLAN'; - } - - public function language() - { - return new LanguageFur(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFurIt.php b/vendor/fisharebest/localization/src/Locale/LocaleFurIt.php deleted file mode 100644 index 2896418bd9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFurIt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFurIt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFurIt extends LocaleFur -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFy.php b/vendor/fisharebest/localization/src/Locale/LocaleFy.php deleted file mode 100644 index 420325dc3a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFy.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageFy; - -/** - * Class LocaleFy - Western Frisian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Frysk'; - } - - public function endonymSortable() - { - return 'FRYSK'; - } - - public function language() - { - return new LanguageFy(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleFyNl.php b/vendor/fisharebest/localization/src/Locale/LocaleFyNl.php deleted file mode 100644 index 673d2cd0f1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleFyNl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleFyNl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleFyNl extends LocaleFy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGa.php b/vendor/fisharebest/localization/src/Locale/LocaleGa.php deleted file mode 100644 index 149f22bc82..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGa; - -/** - * Class LocaleGa - Irish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Gaeilge'; - } - - public function endonymSortable() - { - return 'GAEILGE'; - } - - public function language() - { - return new LanguageGa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGaIe.php b/vendor/fisharebest/localization/src/Locale/LocaleGaIe.php deleted file mode 100644 index 9ff33685f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGaIe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGaIe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGaIe extends LocaleGa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGd.php b/vendor/fisharebest/localization/src/Locale/LocaleGd.php deleted file mode 100644 index e843ed4b98..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGd.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGd; - -/** - * Class LocaleGd - Scottish Gaelic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGd extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Gàidhlig'; - } - - public function endonymSortable() - { - return 'GAIDHLIG'; - } - - public function language() - { - return new LanguageGd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGdGb.php b/vendor/fisharebest/localization/src/Locale/LocaleGdGb.php deleted file mode 100644 index 493e66f082..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGdGb.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGdGb - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGdGb extends LocaleGd -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGl.php b/vendor/fisharebest/localization/src/Locale/LocaleGl.php deleted file mode 100644 index 502d968ab9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGl.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGl; - -/** - * Class LocaleGl - Galician - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGl extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'galego'; - } - - public function endonymSortable() - { - return 'GALEGO'; - } - - public function language() - { - return new LanguageGl(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGlEs.php b/vendor/fisharebest/localization/src/Locale/LocaleGlEs.php deleted file mode 100644 index 387104bf47..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGlEs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGlEs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGlEs extends LocaleGl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGsw.php b/vendor/fisharebest/localization/src/Locale/LocaleGsw.php deleted file mode 100644 index 34d56a7b23..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGsw.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGsw; - -/** - * Class LocaleGsw - Swiss German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGsw extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Schwiizertüütsch'; - } - - public function endonymSortable() - { - return 'SCHWIIZERTUUTSCH'; - } - - public function language() - { - return new LanguageGsw(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::APOSTROPHE, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGswCh.php b/vendor/fisharebest/localization/src/Locale/LocaleGswCh.php deleted file mode 100644 index d05a3f67f5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGswCh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGswCh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGswCh extends LocaleGsw -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGswFr.php b/vendor/fisharebest/localization/src/Locale/LocaleGswFr.php deleted file mode 100644 index e26357f6ea..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGswFr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFr; - -/** - * Class LocaleGswFr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGswFr extends LocaleGsw -{ - public function territory() - { - return new TerritoryFr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGswLi.php b/vendor/fisharebest/localization/src/Locale/LocaleGswLi.php deleted file mode 100644 index df5e02fe0d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGswLi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLi; - -/** - * Class LocaleGswLi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGswLi extends LocaleGsw -{ - public function territory() - { - return new TerritoryLi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGu.php b/vendor/fisharebest/localization/src/Locale/LocaleGu.php deleted file mode 100644 index 7b8bcbcc69..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGu.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGu; - -/** - * Class LocaleGu - Gujarati - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGu extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'ગુજરાતી'; - } - - public function language() - { - return new LanguageGu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGuIn.php b/vendor/fisharebest/localization/src/Locale/LocaleGuIn.php deleted file mode 100644 index 7d6400d2d5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGuIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGuIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGuIn extends LocaleGu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGuw.php b/vendor/fisharebest/localization/src/Locale/LocaleGuw.php deleted file mode 100644 index 730325f02a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGuw.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGuw; - -/** - * Class LocaleFrBj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGuw extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Gun'; - } - - public function endonymSortable() - { - return 'GUN'; - } - - public function language() - { - return new LanguageGuw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGuz.php b/vendor/fisharebest/localization/src/Locale/LocaleGuz.php deleted file mode 100644 index 53e6ae1247..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGuz.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGuz; - -/** - * Class LocaleGuz - Gusii - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGuz extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ekegusii'; - } - - public function endonymSortable() - { - return 'EKEGUSII'; - } - - public function language() - { - return new LanguageGuz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGuzKe.php b/vendor/fisharebest/localization/src/Locale/LocaleGuzKe.php deleted file mode 100644 index 20a3619a5f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGuzKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGuzKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGuzKe extends LocaleGuz -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGv.php b/vendor/fisharebest/localization/src/Locale/LocaleGv.php deleted file mode 100644 index beb3af8ff5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGv.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageGv; - -/** - * Class LocaleGv - Manx - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGv extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Gaelg'; - } - - public function endonymSortable() - { - return 'GAELG'; - } - - public function language() - { - return new LanguageGv(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleGvIm.php b/vendor/fisharebest/localization/src/Locale/LocaleGvIm.php deleted file mode 100644 index c23390d5d7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleGvIm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleGvIm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleGvIm extends LocaleGv -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHa.php b/vendor/fisharebest/localization/src/Locale/LocaleHa.php deleted file mode 100644 index bbe6364e7b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHa; - -/** - * Class LocaleHa - Hausa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Hausa'; - } - - public function endonymSortable() - { - return 'HAUSA'; - } - - public function language() - { - return new LanguageHa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHaGh.php b/vendor/fisharebest/localization/src/Locale/LocaleHaGh.php deleted file mode 100644 index b10bd3baeb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHaGh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGh; - -/** - * Class LocaleHaGh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHaGh extends LocaleHa -{ - public function territory() - { - return new TerritoryGh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHaNe.php b/vendor/fisharebest/localization/src/Locale/LocaleHaNe.php deleted file mode 100644 index 7a61bc5d1b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHaNe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNe; - -/** - * Class LocaleHaNe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHaNe extends LocaleHa -{ - public function territory() - { - return new TerritoryNe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHaNg.php b/vendor/fisharebest/localization/src/Locale/LocaleHaNg.php deleted file mode 100644 index 62b4efbd70..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHaNg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHaNg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHaNg extends LocaleHa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHaw.php b/vendor/fisharebest/localization/src/Locale/LocaleHaw.php deleted file mode 100644 index 794c4cc949..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHaw.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHaw; - -/** - * Class LocaleHaw - Hawaiian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHaw extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ʻŌlelo Hawaiʻi'; - } - - public function endonymSortable() - { - return 'OLELO HAWAII'; - } - - public function language() - { - return new LanguageHaw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHawUs.php b/vendor/fisharebest/localization/src/Locale/LocaleHawUs.php deleted file mode 100644 index 1a34d6120c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHawUs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHawUs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHawUs extends LocaleHaw -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHe.php b/vendor/fisharebest/localization/src/Locale/LocaleHe.php deleted file mode 100644 index 4d57f79207..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHe.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHe; - -/** - * Class LocaleHe - Hebrew - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'עברית'; - } - - public function language() - { - return new LanguageHe(); - } - - public function numberSymbols() - { - return array( - self::NEGATIVE => self::LTR_MARK . self::HYPHEN, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHeIl.php b/vendor/fisharebest/localization/src/Locale/LocaleHeIl.php deleted file mode 100644 index 3f5d493c6e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHeIl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHeIl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHeIl extends LocaleHe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHi.php b/vendor/fisharebest/localization/src/Locale/LocaleHi.php deleted file mode 100644 index 6a87aaa8ca..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHi.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHi; - -/** - * Class LocaleHi - Hindi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHi extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'हिन्दी'; - } - - public function language() - { - return new LanguageHi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHiIn.php b/vendor/fisharebest/localization/src/Locale/LocaleHiIn.php deleted file mode 100644 index 3083093bb5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHiIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHiIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHiIn extends LocaleHi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHr.php b/vendor/fisharebest/localization/src/Locale/LocaleHr.php deleted file mode 100644 index 5541b2de74..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHr.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHr; - -/** - * Class LocaleHr - Croatian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHr extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'croatian_ci'; - } - - public function endonym() - { - return 'hrvatski'; - } - - public function endonymSortable() - { - return 'HRVATSKI'; - } - - public function language() - { - return new LanguageHr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - /** - * How to format a floating point number (%s) as a percentage. - * - * @return string - */ - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHrBa.php b/vendor/fisharebest/localization/src/Locale/LocaleHrBa.php deleted file mode 100644 index e048d37855..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHrBa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBa; - -/** - * Class LocaleHrBa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHrBa extends LocaleHr -{ - public function territory() - { - return new TerritoryBa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHrHr.php b/vendor/fisharebest/localization/src/Locale/LocaleHrHr.php deleted file mode 100644 index a42468c197..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHrHr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHrHr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHrHr extends LocaleHr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHsb.php b/vendor/fisharebest/localization/src/Locale/LocaleHsb.php deleted file mode 100644 index 1c25e168bc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHsb.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHsb; - -/** - * Class LocaleHsb - Upper Sorbian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHsb extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'hornjoserbšćina'; - } - - public function endonymSortable() - { - return 'HORNJOSERBSCINA'; - } - - public function language() - { - return new LanguageHsb(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHsbDe.php b/vendor/fisharebest/localization/src/Locale/LocaleHsbDe.php deleted file mode 100644 index 26a4d896ac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHsbDe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHsbDe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHsbDe extends LocaleHsb -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHu.php b/vendor/fisharebest/localization/src/Locale/LocaleHu.php deleted file mode 100644 index ee1ceee5dd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHu.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHu; - -/** - * Class LocaleHu - Hungarian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHu extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'hungarian_ci'; - } - - public function endonym() - { - return 'magyar'; - } - - public function endonymSortable() - { - return 'MAGYAR'; - } - - public function language() - { - return new LanguageHu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHuHu.php b/vendor/fisharebest/localization/src/Locale/LocaleHuHu.php deleted file mode 100644 index db7a7110a1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHuHu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHuHu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHuHu extends LocaleHu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHy.php b/vendor/fisharebest/localization/src/Locale/LocaleHy.php deleted file mode 100644 index a7fd379548..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHy.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageHy; - -/** - * Class LocaleHy - Armenian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'հայերեն'; - } - - public function endonymSortable() - { - return 'ՀԱՅԵՐԵՆ'; - } - - public function language() - { - return new LanguageHy(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleHyAm.php b/vendor/fisharebest/localization/src/Locale/LocaleHyAm.php deleted file mode 100644 index 6dafd43bb8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleHyAm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleHyAm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleHyAm extends LocaleHy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIa.php b/vendor/fisharebest/localization/src/Locale/LocaleIa.php deleted file mode 100644 index c72e300358..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIa.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIa; - -/** - * Class LocaleIa - Interlingua - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'interlingua'; - } - - public function endonymSortable() - { - return 'INTERLINGUA'; - } - - public function language() - { - return new LanguageIa(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIa001.php b/vendor/fisharebest/localization/src/Locale/LocaleIa001.php deleted file mode 100644 index 7e1420e52e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIa001.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\Territory001; - -/** - * Class LocaleIaFr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIa001 extends LocaleIa -{ - public function territory() - { - return new Territory001(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleId.php b/vendor/fisharebest/localization/src/Locale/LocaleId.php deleted file mode 100644 index 3482be7b60..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleId.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageId; - -/** - * Class LocaleId - Indonesian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleId extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Indonesia'; - } - - public function endonymSortable() - { - return 'INDONESIA'; - } - - public function language() - { - return new LanguageId(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIdId.php b/vendor/fisharebest/localization/src/Locale/LocaleIdId.php deleted file mode 100644 index a129563b5a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIdId.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleIdId - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIdId extends LocaleId -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIg.php b/vendor/fisharebest/localization/src/Locale/LocaleIg.php deleted file mode 100644 index 934b65aad0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIg.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIg; - -/** - * Class LocaleIg - Igbo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Igbo'; - } - - public function endonymSortable() - { - return 'IGBO'; - } - - public function language() - { - return new LanguageIg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIgNg.php b/vendor/fisharebest/localization/src/Locale/LocaleIgNg.php deleted file mode 100644 index 0374e142ba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIgNg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleIgNg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIgNg extends LocaleIg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIi.php b/vendor/fisharebest/localization/src/Locale/LocaleIi.php deleted file mode 100644 index 4c8f3bfe70..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIi.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIi; - -/** - * Class LocaleIi - Sichuan Yi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIi extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ꆈꌠꉙ'; - } - - public function language() - { - return new LanguageIi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIiCn.php b/vendor/fisharebest/localization/src/Locale/LocaleIiCn.php deleted file mode 100644 index 60e3454f09..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIiCn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleIiCn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIiCn extends LocaleIi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleInterface.php b/vendor/fisharebest/localization/src/Locale/LocaleInterface.php deleted file mode 100644 index 08a63edfdf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleInterface.php +++ /dev/null @@ -1,139 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageInterface; -use Fisharebest\Localization\PluralRule\PluralRuleInterface; -use Fisharebest\Localization\Script\ScriptInterface; -use Fisharebest\Localization\Territory\TerritoryInterface; -use Fisharebest\Localization\Variant\VariantInterface; - -/** - * Interface LocaleInterface - Locale. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -interface LocaleInterface -{ - /** - * Generate a linux locale code for this locale. Examples include - * "fr", “en_GB”, “ca_ES@valencia” and “sr@latin”. - * - * @return string - */ - public function code(); - - /** - * Which collation sequence should be used for this locale? - * “unicode_ci” would mean use “utf8_unicode_ci”, “utf8mb4_unicode_ci”, etc. - * - * @link http://dev.mysql.com/doc/refman/5.7/en/charset-unicode-sets.html - * @return string - */ - public function collation(); - - /** - * Convert (Hindu-Arabic) digits into a localized form - * - * @param string $string e.g. "123.45" - * - * @return string - */ - public function digits($string); - - /** - * Is text written left-to-right “ltr” or right-to-left “rtl”. - * Most scripts are only written in one direction, but there are a few that - * can be written in either direction. - * - * @return string “ltr” or “rtl” - */ - public function direction(); - - /** - * The name of this locale, in its own language/script, and with the - * customary capitalization of the locale. - * - * @return string - */ - public function endonym(); - - /** - * A sortable version of the locale name. For example, “British English” - * might sort as “ENGLISH, BRITISH” to keep all the variants of English together. - * All-capitals makes sorting easier, as we can use a simple strcmp(). - * - * @return string - */ - public function endonymSortable(); - - /** - * Markup for an HTML element - * - * @return string e.g. lang="ar" dir="rtl" - */ - public function htmlAttributes(); - - /** - * The language used by this locale. - * - * @return LanguageInterface - */ - public function language(); - - /** - * The IETF language tag for the locale. Examples include - * “fr, “en-GB”, “ca-ES-valencia” and “sr-Latn”. - * - * @return string - */ - public function languageTag(); - - /** - * Convert (Hindu-Arabic) digits into a localized form - * - * @param string|float|integer $number The number to be localized - * - * @return string - */ - public function number($number); - - /** - * Convert (Hindu-Arabic) digits into a localized form - * - * @param string|float|integer $number The number to be localized - * - * @return string - */ - public function percent($number); - - /** - * Which plural rule is used in this locale - * - * @return PluralRuleInterface - */ - public function pluralRule(); - - /** - * The script used by this locale. - * - * @return ScriptInterface - */ - public function script(); - - /** - * The territory used by this locale. - * - * @return TerritoryInterface - */ - public function territory(); - - /** - * The variant, if any of this locale. - * - * @return VariantInterface|null - */ - public function variant(); -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIo.php b/vendor/fisharebest/localization/src/Locale/LocaleIo.php deleted file mode 100644 index 9260cbfaad..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIo; - -/** - * Class LocaleIo - Ido - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ido'; - } - - public function endonymSortable() - { - return 'IDO'; - } - - public function language() - { - return new LanguageIo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIs.php b/vendor/fisharebest/localization/src/Locale/LocaleIs.php deleted file mode 100644 index 8e3dc5ce3c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIs.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIs; - -/** - * Class LocaleIs - Icelandic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIs extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'icelandic_ci'; - } - - public function endonym() - { - return 'íslenska'; - } - - public function endonymSortable() - { - return 'ISLENSKA'; - } - - public function language() - { - return new LanguageIs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIsIs.php b/vendor/fisharebest/localization/src/Locale/LocaleIsIs.php deleted file mode 100644 index efa47f704c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIsIs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleIsIs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIsIs extends LocaleIs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIt.php b/vendor/fisharebest/localization/src/Locale/LocaleIt.php deleted file mode 100644 index a2532c2468..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIt.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIt; - -/** - * Class LocaleIt - Italian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIt extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'italiano'; - } - - public function endonymSortable() - { - return 'ITALIANO'; - } - - public function language() - { - return new LanguageIt(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleItCh.php b/vendor/fisharebest/localization/src/Locale/LocaleItCh.php deleted file mode 100644 index 060461694d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleItCh.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LocaleItCh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleItCh extends LocaleIt -{ - public function territory() - { - return new TerritoryCh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::APOSTROPHE, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleItIt.php b/vendor/fisharebest/localization/src/Locale/LocaleItIt.php deleted file mode 100644 index 1eb0974d37..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleItIt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleItIt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleItIt extends LocaleIt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleItSm.php b/vendor/fisharebest/localization/src/Locale/LocaleItSm.php deleted file mode 100644 index 2977701445..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleItSm.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySm; - -/** - * Class LocaleItSm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleItSm extends LocaleIt -{ - public function territory() - { - return new TerritorySm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleItVa.php b/vendor/fisharebest/localization/src/Locale/LocaleItVa.php deleted file mode 100644 index e5dcd42b31..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleItVa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryVa; - -/** - * Class LocaleItVa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleItVa extends LocaleIt -{ - public function territory() - { - return new TerritoryVa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIu.php b/vendor/fisharebest/localization/src/Locale/LocaleIu.php deleted file mode 100644 index f4fdf2743b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIu.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageIu; - -/** - * Class LocaleIu - Inuktitut - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ᐃᓄᒃᑎᑐᑦ'; - } - - public function endonymSortable() - { - return 'ᐃᓄᒃᑎᑐᑦ'; - } - - public function language() - { - return new LanguageIu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleIuLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleIuLatn.php deleted file mode 100644 index 64b073a7f6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleIuLatn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleIuLatn - Inuktitut - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleIuLatn extends LocaleIu -{ - public function endonym() - { - return 'Inuktitut'; - } - - public function endonymSortable() - { - return 'INUKTITUT'; - } - - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJa.php b/vendor/fisharebest/localization/src/Locale/LocaleJa.php deleted file mode 100644 index 9f51579d00..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJa.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageJa; - -/** - * Class LocaleJa - Japanese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return '日本語'; - } - - public function language() - { - return new LanguageJa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJaJp.php b/vendor/fisharebest/localization/src/Locale/LocaleJaJp.php deleted file mode 100644 index 618c049d29..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJaJp.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleJaJp - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJaJp extends LocaleJa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJbo.php b/vendor/fisharebest/localization/src/Locale/LocaleJbo.php deleted file mode 100644 index a504cc6e02..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJbo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageJbo; - -/** - * Class LocalePap - Lojban - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJbo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Lojban'; - } - - public function endonymSortable() - { - return 'LOJBAN'; - } - - public function language() - { - return new LanguageJbo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJgo.php b/vendor/fisharebest/localization/src/Locale/LocaleJgo.php deleted file mode 100644 index 73f9961f18..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJgo.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageJgo; - -/** - * Class LocaleJgo - Ngomba - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJgo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ndaꞌa'; - } - - public function endonymSortable() - { - return 'NDAA'; - } - - public function language() - { - return new LanguageJgo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJgoCm.php b/vendor/fisharebest/localization/src/Locale/LocaleJgoCm.php deleted file mode 100644 index b3b9f865d7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJgoCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleJgoCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJgoCm extends LocaleJgo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJmc.php b/vendor/fisharebest/localization/src/Locale/LocaleJmc.php deleted file mode 100644 index c32dab0bbd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJmc.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageJmc; - -/** - * Class LocaleJmc - Machame - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJmc extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kimachame'; - } - - public function endonymSortable() - { - return 'KIMACHAME'; - } - - public function language() - { - return new LanguageJmc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJmcTz.php b/vendor/fisharebest/localization/src/Locale/LocaleJmcTz.php deleted file mode 100644 index 0cf113c7c4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJmcTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleJmcTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJmcTz extends LocaleJmc -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJv.php b/vendor/fisharebest/localization/src/Locale/LocaleJv.php deleted file mode 100644 index 1ddfa58864..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJv.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageJv; - -/** - * Class LocaleJv - Javanese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJv extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Jawa'; - } - - public function language() - { - return new LanguageJv(); - } - - public function numberSymbols() - { - return array( - self::DECIMAL => self::COMMA, - self::GROUP => self::DOT, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJvId.php b/vendor/fisharebest/localization/src/Locale/LocaleJvId.php deleted file mode 100644 index 0b319c2b01..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJvId.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleJv - Javanese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJvId extends LocaleJv -{ - public function endonym() - { - return 'ꦧꦱꦗꦮ'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleJvLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleJvLatn.php deleted file mode 100644 index cf23b7848f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleJvLatn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleJv - Javanese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleJvLatn extends LocaleJv -{ - public function endonym() - { - return 'Basa Jawa'; - } - - public function endonymSortable() - { - return 'BASA JAWA'; - } - - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKa.php b/vendor/fisharebest/localization/src/Locale/LocaleKa.php deleted file mode 100644 index ea7b154ff7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKa.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKa; - -/** - * Class LocaleKa - Georgian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ქართული'; - } - - public function language() - { - return new LanguageKa(); - } - - protected function minimumGroupingDigits() - { - return 2; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKaGe.php b/vendor/fisharebest/localization/src/Locale/LocaleKaGe.php deleted file mode 100644 index 8f41889952..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKaGe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKaGe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKaGe extends LocaleKa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKab.php b/vendor/fisharebest/localization/src/Locale/LocaleKab.php deleted file mode 100644 index 3db91d59c8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKab.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKab; - -/** - * Class LocaleKab - Kabyle - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKab extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Taqbaylit'; - } - - public function endonymSortable() - { - return 'TAQBAYLIT'; - } - - public function language() - { - return new LanguageKab(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKabDz.php b/vendor/fisharebest/localization/src/Locale/LocaleKabDz.php deleted file mode 100644 index f96655fc22..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKabDz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKabDz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKabDz extends LocaleKab -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKaj.php b/vendor/fisharebest/localization/src/Locale/LocaleKaj.php deleted file mode 100644 index 7e8897ae3f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKaj.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKaj; - -/** - * Class LocaleKaj - Jju - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKaj extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Jju'; - } - - public function endonymSortable() - { - return 'JJU'; - } - - public function language() - { - return new LanguageKaj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKam.php b/vendor/fisharebest/localization/src/Locale/LocaleKam.php deleted file mode 100644 index d23bc9669a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKam.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKam; - -/** - * Class LocaleKam - Kamba - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKam extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kikamba'; - } - - public function endonymSortable() - { - return 'KIKAMBA'; - } - - public function language() - { - return new LanguageKam(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKamKe.php b/vendor/fisharebest/localization/src/Locale/LocaleKamKe.php deleted file mode 100644 index 69de830c00..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKamKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKamKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKamKe extends LocaleKam -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKcg.php b/vendor/fisharebest/localization/src/Locale/LocaleKcg.php deleted file mode 100644 index 110214da6a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKcg.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKcg; - -/** - * Class LocaleKcg - Tyap - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKcg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Tyap'; - } - - public function endonymSortable() - { - return 'TYAP'; - } - - public function language() - { - return new LanguageKcg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKde.php b/vendor/fisharebest/localization/src/Locale/LocaleKde.php deleted file mode 100644 index eb10abb376..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKde.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKde; - -/** - * Class LocaleKde - Makonde - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKde extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Chimakonde'; - } - - public function endonymSortable() - { - return 'CHIMAKONDE'; - } - - public function language() - { - return new LanguageKde(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKdeTz.php b/vendor/fisharebest/localization/src/Locale/LocaleKdeTz.php deleted file mode 100644 index 6c54e8e795..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKdeTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKdeTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKdeTz extends LocaleKde -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKea.php b/vendor/fisharebest/localization/src/Locale/LocaleKea.php deleted file mode 100644 index cacb57b80f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKea.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKea; - -/** - * Class LocaleKea - Kabuverdianu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKea extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'kabuverdianu'; - } - - public function endonymSortable() - { - return 'KABUVERDIANU'; - } - - public function language() - { - return new LanguageKea(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKeaCv.php b/vendor/fisharebest/localization/src/Locale/LocaleKeaCv.php deleted file mode 100644 index 2630475f4e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKeaCv.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKeaCv - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKeaCv extends LocaleKea -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKhq.php b/vendor/fisharebest/localization/src/Locale/LocaleKhq.php deleted file mode 100644 index 1bc49a0e90..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKhq.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKhq; - -/** - * Class LocaleKhq - Koyra Chiini - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKhq extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Koyra ciini'; - } - - public function endonymSortable() - { - return 'KOYRA CIINI'; - } - - public function language() - { - return new LanguageKhq(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKhqMl.php b/vendor/fisharebest/localization/src/Locale/LocaleKhqMl.php deleted file mode 100644 index aa0ed06c02..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKhqMl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKhqMl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKhqMl extends LocaleKhq -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKi.php b/vendor/fisharebest/localization/src/Locale/LocaleKi.php deleted file mode 100644 index 42944f3082..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKi.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKi; - -/** - * Class LocaleKi - Kikuyu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKi extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Gikuyu'; - } - - public function endonymSortable() - { - return 'GIKUYU'; - } - - public function language() - { - return new LanguageKi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKiKe.php b/vendor/fisharebest/localization/src/Locale/LocaleKiKe.php deleted file mode 100644 index ede61b069e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKiKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKiKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKiKe extends LocaleKi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKk.php b/vendor/fisharebest/localization/src/Locale/LocaleKk.php deleted file mode 100644 index b08a026ab3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKk.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKk; - -/** - * Class LocaleKk - Kazakh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'қазақ тілі'; - } - - public function endonymSortable() - { - return 'ҚАЗАҚ ТІЛІ'; - } - - public function language() - { - return new LanguageKk(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKkKz.php b/vendor/fisharebest/localization/src/Locale/LocaleKkKz.php deleted file mode 100644 index 0b3042fd96..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKkKz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKkKz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKkKz extends LocaleKk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKkj.php b/vendor/fisharebest/localization/src/Locale/LocaleKkj.php deleted file mode 100644 index abd1af343c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKkj.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKkj; - -/** - * Class LocaleKkj - Kako - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKkj extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'kakɔ'; - } - - public function endonymSortable() - { - return 'KAKO'; - } - - public function language() - { - return new LanguageKkj(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKkjCm.php b/vendor/fisharebest/localization/src/Locale/LocaleKkjCm.php deleted file mode 100644 index 13d79ca491..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKkjCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKkjCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKkjCm extends LocaleKkj -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKl.php b/vendor/fisharebest/localization/src/Locale/LocaleKl.php deleted file mode 100644 index fa8e80b9f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKl.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKl; - -/** - * Class LocaleKl - Kalaallisut - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKl extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'kalaallisut'; - } - - public function endonymSortable() - { - return 'KALAALLISUT'; - } - - public function language() - { - return new LanguageKl(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKlGl.php b/vendor/fisharebest/localization/src/Locale/LocaleKlGl.php deleted file mode 100644 index 34b102062b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKlGl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKlGl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKlGl extends LocaleKl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKln.php b/vendor/fisharebest/localization/src/Locale/LocaleKln.php deleted file mode 100644 index 885f4de76e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKln.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKln; - -/** - * Class LocaleKln - Kalenjin - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKln extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kalenjin'; - } - - public function endonymSortable() - { - return 'KALENJIN'; - } - - public function language() - { - return new LanguageKln(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKlnKe.php b/vendor/fisharebest/localization/src/Locale/LocaleKlnKe.php deleted file mode 100644 index 909aca7051..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKlnKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKlnKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKlnKe extends LocaleKln -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKm.php b/vendor/fisharebest/localization/src/Locale/LocaleKm.php deleted file mode 100644 index 1221cc2221..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKm.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKm; - -/** - * Class LocaleKm - Khmer - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKm extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ខ្មែរ'; - } - - public function language() - { - return new LanguageKm(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKmKh.php b/vendor/fisharebest/localization/src/Locale/LocaleKmKh.php deleted file mode 100644 index d466713129..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKmKh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKmKh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKmKh extends LocaleKm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKn.php b/vendor/fisharebest/localization/src/Locale/LocaleKn.php deleted file mode 100644 index 1fa69bd6b7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKn.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKn; - -/** - * Class LocaleKn - Kannada - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ಕನ್ನಡ'; - } - - public function language() - { - return new LanguageKn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKnIn.php b/vendor/fisharebest/localization/src/Locale/LocaleKnIn.php deleted file mode 100644 index c35460a15b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKnIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKnIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKnIn extends LocaleKn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKo.php b/vendor/fisharebest/localization/src/Locale/LocaleKo.php deleted file mode 100644 index e4e3b99178..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKo; - -/** - * Class LocaleKo - Korean - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return '한국어'; - } - - public function language() - { - return new LanguageKo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKoKp.php b/vendor/fisharebest/localization/src/Locale/LocaleKoKp.php deleted file mode 100644 index 37b3a80953..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKoKp.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKp; - -/** - * Class LocaleKoKp - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKoKp extends LocaleKo -{ - public function territory() - { - return new TerritoryKp(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKoKr.php b/vendor/fisharebest/localization/src/Locale/LocaleKoKr.php deleted file mode 100644 index 6a0a4083a9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKoKr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKoKr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKoKr extends LocaleKo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKok.php b/vendor/fisharebest/localization/src/Locale/LocaleKok.php deleted file mode 100644 index d2e915e95d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKok.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKok; - -/** - * Class LocaleKok - Konkani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKok extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'कोंकणी'; - } - - public function language() - { - return new LanguageKok(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKokIn.php b/vendor/fisharebest/localization/src/Locale/LocaleKokIn.php deleted file mode 100644 index 8b729e531d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKokIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKokIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKokIn extends LocaleKok -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKs.php b/vendor/fisharebest/localization/src/Locale/LocaleKs.php deleted file mode 100644 index d989ce5e01..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKs.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKs; - -/** - * Class LocaleKs - Kashmiri - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKs extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'کٲشُر'; - } - - public function language() - { - return new LanguageKs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::LTR_MARK . self::HYPHEN . self::LTR_MARK, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKsIn.php b/vendor/fisharebest/localization/src/Locale/LocaleKsIn.php deleted file mode 100644 index 0d704dc603..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKsIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKsIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKsIn extends LocaleKs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKsb.php b/vendor/fisharebest/localization/src/Locale/LocaleKsb.php deleted file mode 100644 index a0fd7221ad..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKsb.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKsb; - -/** - * Class LocaleKsb - Shambala - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKsb extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kishambaa'; - } - - public function endonymSortable() - { - return 'KISHAMBAA'; - } - - public function language() - { - return new LanguageKsb(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKsbTz.php b/vendor/fisharebest/localization/src/Locale/LocaleKsbTz.php deleted file mode 100644 index 8cf324bb49..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKsbTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKsbTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKsbTz extends LocaleKsb -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKsf.php b/vendor/fisharebest/localization/src/Locale/LocaleKsf.php deleted file mode 100644 index 8000dbc451..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKsf.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKsf; - -/** - * Class LocaleKsf - Bafia - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKsf extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'rikpa'; - } - - public function endonymSortable() - { - return 'RIKPA'; - } - - public function language() - { - return new LanguageKsf(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKsfCm.php b/vendor/fisharebest/localization/src/Locale/LocaleKsfCm.php deleted file mode 100644 index 201a50de24..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKsfCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKsfCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKsfCm extends LocaleKsf -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKsh.php b/vendor/fisharebest/localization/src/Locale/LocaleKsh.php deleted file mode 100644 index 0bc6f45296..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKsh.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKsh; - -/** - * Class LocaleKsh - Colognian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKsh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kölsch'; - } - - public function endonymSortable() - { - return 'KOLSCH'; - } - - public function language() - { - return new LanguageKsh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKshDe.php b/vendor/fisharebest/localization/src/Locale/LocaleKshDe.php deleted file mode 100644 index c1b5865435..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKshDe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKshDe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKshDe extends LocaleKsh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKu.php b/vendor/fisharebest/localization/src/Locale/LocaleKu.php deleted file mode 100644 index 154108f82b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKu.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKu; - -/** - * Class LocaleKu - Kurdish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'kurdî'; - } - - public function endonymSortable() - { - return 'KURDI'; - } - - public function language() - { - return new LanguageKu(); - } - - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PERCENT . '%s'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKuTr.php b/vendor/fisharebest/localization/src/Locale/LocaleKuTr.php deleted file mode 100644 index 209dc9f4f6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKuTr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKu - Kurdish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKuTr extends LocaleKu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKw.php b/vendor/fisharebest/localization/src/Locale/LocaleKw.php deleted file mode 100644 index 996044df4f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKw.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKw; - -/** - * Class LocaleKw - Cornish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKw extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'kernewek'; - } - - public function endonymSortable() - { - return 'KERNEWEK'; - } - - public function language() - { - return new LanguageKw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKwGb.php b/vendor/fisharebest/localization/src/Locale/LocaleKwGb.php deleted file mode 100644 index 9c99737eb5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKwGb.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKwGb - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKwGb extends LocaleKw -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKy.php b/vendor/fisharebest/localization/src/Locale/LocaleKy.php deleted file mode 100644 index 0397f92c28..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKy.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageKy; - -/** - * Class LocaleKy - Kyrgyz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'кыргызча'; - } - - public function endonymSortable() - { - return 'КЫРГЫЗЧА'; - } - - public function language() - { - return new LanguageKy(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleKyKg.php b/vendor/fisharebest/localization/src/Locale/LocaleKyKg.php deleted file mode 100644 index 3ac49f2c7d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleKyKg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleKyKg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleKyKg extends LocaleKy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLag.php b/vendor/fisharebest/localization/src/Locale/LocaleLag.php deleted file mode 100644 index edd363173d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLag.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLag; - -/** - * Class LocaleLag - Langi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLag extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kɨlaangi'; - } - - public function endonymSortable() - { - return 'KILAANGI'; - } - - public function language() - { - return new LanguageLag(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLagTz.php b/vendor/fisharebest/localization/src/Locale/LocaleLagTz.php deleted file mode 100644 index 6eaf7c244c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLagTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLagTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLagTz extends LocaleLag -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLb.php b/vendor/fisharebest/localization/src/Locale/LocaleLb.php deleted file mode 100644 index 77f040d46c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLb.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLb; - -/** - * Class LocaleLb - Luxembourgish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLb extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Lëtzebuergesch'; - } - - public function endonymSortable() - { - return 'LETZEBUERGESCH'; - } - - public function language() - { - return new LanguageLb(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLbLu.php b/vendor/fisharebest/localization/src/Locale/LocaleLbLu.php deleted file mode 100644 index 09882ee5da..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLbLu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLbLu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLbLu extends LocaleLb -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLg.php b/vendor/fisharebest/localization/src/Locale/LocaleLg.php deleted file mode 100644 index 23a60a89c0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLg.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLg; - -/** - * Class LocaleLg - Ganda - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Luganda'; - } - - public function endonymSortable() - { - return 'LUGANDA'; - } - - public function language() - { - return new LanguageLg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLgUg.php b/vendor/fisharebest/localization/src/Locale/LocaleLgUg.php deleted file mode 100644 index 4ac0a46acd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLgUg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLgUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLgUg extends LocaleLg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLkt.php b/vendor/fisharebest/localization/src/Locale/LocaleLkt.php deleted file mode 100644 index bec7f8fcb4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLkt.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLkt; - -/** - * Class LocaleLkt - Lakota - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLkt extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Lakȟólʼiyapi'; - } - - public function endonymSortable() - { - return 'LAKHOLIYAPI'; - } - - public function language() - { - return new LanguageLkt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLktUs.php b/vendor/fisharebest/localization/src/Locale/LocaleLktUs.php deleted file mode 100644 index 316d60322e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLktUs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLktUs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLktUs extends LocaleLkt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLn.php b/vendor/fisharebest/localization/src/Locale/LocaleLn.php deleted file mode 100644 index c7c5a1fce1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLn.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLn; - -/** - * Class LocaleLn - Lingala - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'lingála'; - } - - public function endonymSortable() - { - return 'LINGALA'; - } - - public function language() - { - return new LanguageLn(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLnAo.php b/vendor/fisharebest/localization/src/Locale/LocaleLnAo.php deleted file mode 100644 index 183a3d4ce4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLnAo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAo; - -/** - * Class LocaleLnAo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLnAo extends LocaleLn -{ - public function territory() - { - return new TerritoryAo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLnCd.php b/vendor/fisharebest/localization/src/Locale/LocaleLnCd.php deleted file mode 100644 index ebcbbc173a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLnCd.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLnCd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLnCd extends LocaleLn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLnCf.php b/vendor/fisharebest/localization/src/Locale/LocaleLnCf.php deleted file mode 100644 index 57cbcf63f7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLnCf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCf; - -/** - * Class LocaleLnCf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLnCf extends LocaleLn -{ - public function territory() - { - return new TerritoryCf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLnCg.php b/vendor/fisharebest/localization/src/Locale/LocaleLnCg.php deleted file mode 100644 index b338920072..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLnCg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCg; - -/** - * Class LocaleLnCg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLnCg extends LocaleLn -{ - public function territory() - { - return new TerritoryCg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLo.php b/vendor/fisharebest/localization/src/Locale/LocaleLo.php deleted file mode 100644 index 4bd2016114..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLo.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLo; - -/** - * Class LocaleLo - Lao - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ລາວ'; - } - - public function language() - { - return new LanguageLo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLoLa.php b/vendor/fisharebest/localization/src/Locale/LocaleLoLa.php deleted file mode 100644 index 7d6c2a99a1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLoLa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLoLa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLoLa extends LocaleLo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLrc.php b/vendor/fisharebest/localization/src/Locale/LocaleLrc.php deleted file mode 100644 index 05917b70aa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLrc.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLrc; - -/** - * Class LocaleLrc - Luri - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLrc extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'لۊری شومالی'; - } - - public function language() - { - return new LanguageLrc(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::LTR_MARK . self::HYPHEN . self::LTR_MARK, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLrcIq.php b/vendor/fisharebest/localization/src/Locale/LocaleLrcIq.php deleted file mode 100644 index ac0510127b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLrcIq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIq; - -/** - * Class LocaleLrc - Luri - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLrcIq extends LocaleLrc -{ - public function territory() - { - return new TerritoryIq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLrcIr.php b/vendor/fisharebest/localization/src/Locale/LocaleLrcIr.php deleted file mode 100644 index 459c47acf8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLrcIr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLrc - Luri - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLrcIr extends LocaleLrc -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLt.php b/vendor/fisharebest/localization/src/Locale/LocaleLt.php deleted file mode 100644 index a3cf04eae8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLt.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLt; - -/** - * Class LocaleLt - Lithuanian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLt extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'lithuanian_ci'; - } - - public function endonym() - { - return 'lietuvių'; - } - - public function endonymSortable() - { - return 'LIETUVIU'; - } - - public function language() - { - return new LanguageLt(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLtLt.php b/vendor/fisharebest/localization/src/Locale/LocaleLtLt.php deleted file mode 100644 index 95b83c6fb4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLtLt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLtLt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLtLt extends LocaleLt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLu.php b/vendor/fisharebest/localization/src/Locale/LocaleLu.php deleted file mode 100644 index a6dba04289..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLu.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLu; - -/** - * Class LocaleLu - Luba-Katanga - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Tshiluba'; - } - - public function endonymSortable() - { - return 'TSHILUBA'; - } - - public function language() - { - return new LanguageLu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLuCd.php b/vendor/fisharebest/localization/src/Locale/LocaleLuCd.php deleted file mode 100644 index d92d6799fd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLuCd.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLuCd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLuCd extends LocaleLu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLuo.php b/vendor/fisharebest/localization/src/Locale/LocaleLuo.php deleted file mode 100644 index 7239e30668..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLuo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLuo; - -/** - * Class LocaleLuo - Luo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLuo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Dholuo'; - } - - public function endonymSortable() - { - return 'DHOLUO'; - } - - public function language() - { - return new LanguageLuo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLuoKe.php b/vendor/fisharebest/localization/src/Locale/LocaleLuoKe.php deleted file mode 100644 index 58b2a45c9f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLuoKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLuoKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLuoKe extends LocaleLuo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLuy.php b/vendor/fisharebest/localization/src/Locale/LocaleLuy.php deleted file mode 100644 index ffea254680..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLuy.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLuy; - -/** - * Class LocaleLuy - Luyia - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLuy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Luluhia'; - } - - public function endonymSortable() - { - return 'LULUHIA'; - } - - public function language() - { - return new LanguageLuy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLuyKe.php b/vendor/fisharebest/localization/src/Locale/LocaleLuyKe.php deleted file mode 100644 index bc1e2f16ef..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLuyKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLuyKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLuyKe extends LocaleLuy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLv.php b/vendor/fisharebest/localization/src/Locale/LocaleLv.php deleted file mode 100644 index 3709d14a38..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLv.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageLv; - -/** - * Class LocaleLv - Latvian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLv extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'latvian_ci'; - } - - public function endonym() - { - return 'latviešu'; - } - - public function endonymSortable() - { - return 'LATVIESU'; - } - - public function language() - { - return new LanguageLv(); - } - - protected function minimumGroupingDigits() - { - return 3; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleLvLv.php b/vendor/fisharebest/localization/src/Locale/LocaleLvLv.php deleted file mode 100644 index 77ebd82962..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleLvLv.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLvLv - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleLvLv extends LocaleLv -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMas.php b/vendor/fisharebest/localization/src/Locale/LocaleMas.php deleted file mode 100644 index 52dcfd1a93..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMas.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMas; - -/** - * Class LocaleMas - Masai - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMas extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Maa'; - } - - public function endonymSortable() - { - return 'MAA'; - } - - public function language() - { - return new LanguageMas(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMasKe.php b/vendor/fisharebest/localization/src/Locale/LocaleMasKe.php deleted file mode 100644 index 19af21d121..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMasKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMasKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMasKe extends LocaleMas -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMasTz.php b/vendor/fisharebest/localization/src/Locale/LocaleMasTz.php deleted file mode 100644 index 7eea3270dc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMasTz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTz; - -/** - * Class LocaleMasTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMasTz extends LocaleMas -{ - public function territory() - { - return new TerritoryTz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMer.php b/vendor/fisharebest/localization/src/Locale/LocaleMer.php deleted file mode 100644 index fd0e9c84c5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMer.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMer; - -/** - * Class LocaleMer - Meru - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMer extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kĩmĩrũ'; - } - - public function endonymSortable() - { - return 'KIMIRU'; - } - - public function language() - { - return new LanguageMer(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMerKe.php b/vendor/fisharebest/localization/src/Locale/LocaleMerKe.php deleted file mode 100644 index 5a8a6f3f06..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMerKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMerKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMerKe extends LocaleMer -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMfe.php b/vendor/fisharebest/localization/src/Locale/LocaleMfe.php deleted file mode 100644 index 437d71f148..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMfe.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMfe; - -/** - * Class LocaleMfe - Morisyen - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMfe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'kreol morisien'; - } - - public function endonymSortable() - { - return 'KREOL MORISIEN'; - } - - public function language() - { - return new LanguageMfe(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMfeMu.php b/vendor/fisharebest/localization/src/Locale/LocaleMfeMu.php deleted file mode 100644 index adbddabf33..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMfeMu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMfeMu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMfeMu extends LocaleMfe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMg.php b/vendor/fisharebest/localization/src/Locale/LocaleMg.php deleted file mode 100644 index c739f10bb0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMg.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMg; - -/** - * Class LocaleMg - Malagasy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Malagasy'; - } - - public function endonymSortable() - { - return 'MALAGASY'; - } - - public function language() - { - return new LanguageMg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMgMg.php b/vendor/fisharebest/localization/src/Locale/LocaleMgMg.php deleted file mode 100644 index 605a23b10b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMgMg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMgMg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMgMg extends LocaleMg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMgh.php b/vendor/fisharebest/localization/src/Locale/LocaleMgh.php deleted file mode 100644 index 0584dfb15f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMgh.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMgh; - -/** - * Class LocaleMgh - Makhuwa-Meetto - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMgh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Makua'; - } - - public function endonymSortable() - { - return 'MAKUA'; - } - - public function language() - { - return new LanguageMgh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMghMz.php b/vendor/fisharebest/localization/src/Locale/LocaleMghMz.php deleted file mode 100644 index a390b85c56..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMghMz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMghMz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMghMz extends LocaleMgh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMgo.php b/vendor/fisharebest/localization/src/Locale/LocaleMgo.php deleted file mode 100644 index e7fd5dc3ba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMgo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMgo; - -/** - * Class LocaleMgo - Metaʼ - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMgo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'metaʼ'; - } - - public function endonymSortable() - { - return 'META'; - } - - public function language() - { - return new LanguageMgo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMgoCm.php b/vendor/fisharebest/localization/src/Locale/LocaleMgoCm.php deleted file mode 100644 index f4fef2cb82..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMgoCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMgoCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMgoCm extends LocaleMgo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMi.php b/vendor/fisharebest/localization/src/Locale/LocaleMi.php deleted file mode 100644 index 5e80d4cf07..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMi.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMi; - -/** - * Class LocaleDv - Divehi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMi extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Māori'; - } - - public function language() - { - return new LanguageMi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMiNz.php b/vendor/fisharebest/localization/src/Locale/LocaleMiNz.php deleted file mode 100644 index 273d057784..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMiNz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleDv - Divehi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMiNz extends LocaleMi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMk.php b/vendor/fisharebest/localization/src/Locale/LocaleMk.php deleted file mode 100644 index 0f4aa454a9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMk.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMk; - -/** - * Class LocaleMk - Macedonian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'македонски'; - } - - public function endonymSortable() - { - return 'МАКЕДОНСКИ'; - } - - public function language() - { - return new LanguageMk(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMkMk.php b/vendor/fisharebest/localization/src/Locale/LocaleMkMk.php deleted file mode 100644 index 9cf5d797a1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMkMk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMkMk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMkMk extends LocaleMk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMl.php b/vendor/fisharebest/localization/src/Locale/LocaleMl.php deleted file mode 100644 index 3e24fc640b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMl.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMl; - -/** - * Class LocaleMl - Malayalam - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMl extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'മലയാളം'; - } - - public function language() - { - return new LanguageMl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMlIn.php b/vendor/fisharebest/localization/src/Locale/LocaleMlIn.php deleted file mode 100644 index 7f1b128a68..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMlIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMlIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMlIn extends LocaleMl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMn.php b/vendor/fisharebest/localization/src/Locale/LocaleMn.php deleted file mode 100644 index 3ab9cffeb0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMn; - -/** - * Class LocaleMn - Mongolian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'монгол'; - } - - public function endonymSortable() - { - return 'МОНГОЛ'; - } - - public function language() - { - return new LanguageMn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMnMn.php b/vendor/fisharebest/localization/src/Locale/LocaleMnMn.php deleted file mode 100644 index fc520bcea8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMnMn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMnMn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMnMn extends LocaleMn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMo.php b/vendor/fisharebest/localization/src/Locale/LocaleMo.php deleted file mode 100644 index 931ae3e67f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMo.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMo; - -/** - * Class LocaleIt - Italian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'limba moldovenească'; - } - - public function endonymSortable() - { - return 'LIMBA MOLDOVENEASCĂ'; - } - - public function language() - { - return new LanguageMo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMoCyrl.php b/vendor/fisharebest/localization/src/Locale/LocaleMoCyrl.php deleted file mode 100644 index e464a21eae..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMoCyrl.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptCyrl; - -/** - * Class LocaleIt - Italian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMoCyrl extends LocaleMo -{ - public function endonym() - { - return 'лимба молдовеняскэ'; - } - - public function endonymSortable() - { - return 'ЛИМБА МОЛДОВЕНЯСКЭ'; - } - - public function script() - { - return new ScriptCyrl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMr.php b/vendor/fisharebest/localization/src/Locale/LocaleMr.php deleted file mode 100644 index 20c837417d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMr.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMr; - -/** - * Class LocaleMr - Marathi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMr extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'मराठी'; - } - - public function language() - { - return new LanguageMr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMrIn.php b/vendor/fisharebest/localization/src/Locale/LocaleMrIn.php deleted file mode 100644 index bfdba81c81..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMrIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMrIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMrIn extends LocaleMr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMs.php b/vendor/fisharebest/localization/src/Locale/LocaleMs.php deleted file mode 100644 index db5de5d81b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMs.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMs; - -/** - * Class LocaleMs - Malay - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Melayu'; - } - - public function endonymSortable() - { - return 'MELAYU'; - } - - public function language() - { - return new LanguageMs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMsBn.php b/vendor/fisharebest/localization/src/Locale/LocaleMsBn.php deleted file mode 100644 index a0f2437f5f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMsBn.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBn; - -/** - * Class LocaleMsMy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMsBn extends LocaleMs -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryBn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMsMy.php b/vendor/fisharebest/localization/src/Locale/LocaleMsMy.php deleted file mode 100644 index f70c508ee2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMsMy.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMsMy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMsMy extends LocaleMs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMsSg.php b/vendor/fisharebest/localization/src/Locale/LocaleMsSg.php deleted file mode 100644 index b5e214f536..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMsSg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySg; - -/** - * Class LocaleMsSg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMsSg extends LocaleMs -{ - public function territory() - { - return new TerritorySg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMt.php b/vendor/fisharebest/localization/src/Locale/LocaleMt.php deleted file mode 100644 index acd4c18838..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMt.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMt; - -/** - * Class LocaleMt - Maltese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMt extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Malti'; - } - - public function endonymSortable() - { - return 'MALTI'; - } - - public function language() - { - return new LanguageMt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMtMt.php b/vendor/fisharebest/localization/src/Locale/LocaleMtMt.php deleted file mode 100644 index bb61aea6a7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMtMt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMtMt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMtMt extends LocaleMt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMua.php b/vendor/fisharebest/localization/src/Locale/LocaleMua.php deleted file mode 100644 index fe3a5c6531..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMua.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMua; - -/** - * Class LocaleMua - Mundang - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMua extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'MUNDAŊ'; - } - - public function endonymSortable() - { - return 'MUNDAN'; - } - - public function language() - { - return new LanguageMua(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMuaCm.php b/vendor/fisharebest/localization/src/Locale/LocaleMuaCm.php deleted file mode 100644 index 9c3a00dfc3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMuaCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMuaCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMuaCm extends LocaleMua -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMy.php b/vendor/fisharebest/localization/src/Locale/LocaleMy.php deleted file mode 100644 index e0fbc4f28a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMy.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMy; - -/** - * Class LocaleMy - Burmese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'မြန်မာ'; - } - - public function language() - { - return new LanguageMy(); - } - - protected function minimumGroupingDigits() - { - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMyMm.php b/vendor/fisharebest/localization/src/Locale/LocaleMyMm.php deleted file mode 100644 index 2eaa32874d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMyMm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleMyMm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMyMm extends LocaleMy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMzn.php b/vendor/fisharebest/localization/src/Locale/LocaleMzn.php deleted file mode 100644 index 7d895016b0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMzn.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageMzn; - -/** - * Class LocaleLrc - Mazanderani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMzn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'مازرونی'; - } - - public function language() - { - return new LanguageMzn(); - } - - public function numerals() - { - return array('۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::LTR_MARK . self::HYPHEN . self::LTR_MARK, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleMznIr.php b/vendor/fisharebest/localization/src/Locale/LocaleMznIr.php deleted file mode 100644 index 3ebd964847..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleMznIr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleLrc - Mazanderani - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleMznIr extends LocaleMzn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNah.php b/vendor/fisharebest/localization/src/Locale/LocaleNah.php deleted file mode 100644 index aafcd3cdbc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNah.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNah; - -/** - * Class LocaleNah - Nahuatl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNah extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Nahuatlahtolli'; - } - - public function endonymSortable() - { - return 'NAHUATLAHTOLLI'; - } - - public function language() - { - return new LanguageNah(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::COMMA, - self::DECIMAL => self::DOT, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNaq.php b/vendor/fisharebest/localization/src/Locale/LocaleNaq.php deleted file mode 100644 index 727fb23f5c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNaq.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNaq; - -/** - * Class LocaleNaq - Nama - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNaq extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Khoekhoegowab'; - } - - public function endonymSortable() - { - return 'KHOEKHOEGOWAB'; - } - - public function language() - { - return new LanguageNaq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNaqNa.php b/vendor/fisharebest/localization/src/Locale/LocaleNaqNa.php deleted file mode 100644 index 0982c22529..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNaqNa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNaqNa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNaqNa extends LocaleNaq -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNb.php b/vendor/fisharebest/localization/src/Locale/LocaleNb.php deleted file mode 100644 index 71b7fbe18e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNb.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNb; - -/** - * Class LocaleNb - Norwegian Bokmål - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNb extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'danish_ci'; - } - - public function endonym() - { - return 'norsk bokmål'; - } - - public function endonymSortable() - { - return 'NORSK BOKMAL'; - } - - public function language() - { - return new LanguageNb(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNbNo.php b/vendor/fisharebest/localization/src/Locale/LocaleNbNo.php deleted file mode 100644 index 2bab42f82f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNbNo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNbNo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNbNo extends LocaleNb -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNbSj.php b/vendor/fisharebest/localization/src/Locale/LocaleNbSj.php deleted file mode 100644 index 36a258f6a6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNbSj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySj; - -/** - * Class LocaleNbSj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNbSj extends LocaleNb -{ - public function territory() - { - return new TerritorySj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNd.php b/vendor/fisharebest/localization/src/Locale/LocaleNd.php deleted file mode 100644 index 0406bb6d44..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNd.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNd; - -/** - * Class LocaleNd - North Ndebele - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNd extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'isiNdebele'; - } - - public function endonymSortable() - { - return 'ISINDEBELE'; - } - - public function language() - { - return new LanguageNd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNdZw.php b/vendor/fisharebest/localization/src/Locale/LocaleNdZw.php deleted file mode 100644 index bdd9863795..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNdZw.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNdZw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNdZw extends LocaleNd -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNds.php b/vendor/fisharebest/localization/src/Locale/LocaleNds.php deleted file mode 100644 index 4416d94249..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNds.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNds; - -/** - * Class LocaleNds - Low German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNds extends LocaleDe -{ - public function endonym() - { - return 'Neddersass’sch'; - } - - public function endonymSortable() - { - return 'NEDDERSASS’SCH'; - } - - public function language() - { - return new LanguageNds(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNdsDe.php b/vendor/fisharebest/localization/src/Locale/LocaleNdsDe.php deleted file mode 100644 index 9aa9f9297a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNdsDe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNdsDe - Low German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNdsDe extends LocaleNds -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNdsNl.php b/vendor/fisharebest/localization/src/Locale/LocaleNdsNl.php deleted file mode 100644 index 7e608c3cee..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNdsNl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryNl; - -/** - * Class LocaleNdsNl - Low German - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNdsNl extends LocaleNds -{ - public function territory() - { - return new TerritoryNl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNe.php b/vendor/fisharebest/localization/src/Locale/LocaleNe.php deleted file mode 100644 index 5f75b2a530..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNe.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNe; - -/** - * Class LocaleNe - Nepali - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'नेपाली'; - } - - public function language() - { - return new LanguageNe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNeIn.php b/vendor/fisharebest/localization/src/Locale/LocaleNeIn.php deleted file mode 100644 index b9b58336b0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNeIn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LocaleNeIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNeIn extends LocaleNe -{ - public function territory() - { - return new TerritoryIn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNeNp.php b/vendor/fisharebest/localization/src/Locale/LocaleNeNp.php deleted file mode 100644 index acdc0b3c26..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNeNp.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNeNp - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNeNp extends LocaleNe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNl.php b/vendor/fisharebest/localization/src/Locale/LocaleNl.php deleted file mode 100644 index fa9420fd29..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNl.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNl; - -/** - * Class LocaleNl - Dutch - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNl extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Nederlands'; - } - - public function endonymSortable() - { - return 'NEDERLANDS'; - } - - public function language() - { - return new LanguageNl(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlAw.php b/vendor/fisharebest/localization/src/Locale/LocaleNlAw.php deleted file mode 100644 index 7953a7683a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlAw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAw; - -/** - * Class LocaleNlAw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlAw extends LocaleNl -{ - public function territory() - { - return new TerritoryAw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlBe.php b/vendor/fisharebest/localization/src/Locale/LocaleNlBe.php deleted file mode 100644 index d1948a3d42..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlBe.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBe; - -/** - * Class LocaleNlBe - Flemish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlBe extends LocaleNl -{ - public function endonym() - { - return 'Vlaams'; - } - - public function endonymSortable() - { - return 'VLAAMS'; - } - - public function territory() - { - return new TerritoryBe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlBq.php b/vendor/fisharebest/localization/src/Locale/LocaleNlBq.php deleted file mode 100644 index d1f3ff68df..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlBq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBq; - -/** - * Class LocaleNlBq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlBq extends LocaleNl -{ - public function territory() - { - return new TerritoryBq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlCw.php b/vendor/fisharebest/localization/src/Locale/LocaleNlCw.php deleted file mode 100644 index 5a066281ae..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlCw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCw; - -/** - * Class LocaleNlCw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlCw extends LocaleNl -{ - public function territory() - { - return new TerritoryCw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlNl.php b/vendor/fisharebest/localization/src/Locale/LocaleNlNl.php deleted file mode 100644 index 61b7b0b97d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlNl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNlNl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlNl extends LocaleNl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlSr.php b/vendor/fisharebest/localization/src/Locale/LocaleNlSr.php deleted file mode 100644 index c1f538a3fa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlSr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySr; - -/** - * Class LocaleNlSr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlSr extends LocaleNl -{ - public function territory() - { - return new TerritorySr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNlSx.php b/vendor/fisharebest/localization/src/Locale/LocaleNlSx.php deleted file mode 100644 index aaff8005c6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNlSx.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySx; - -/** - * Class LocaleNlSx - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNlSx extends LocaleNl -{ - public function territory() - { - return new TerritorySx(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNmg.php b/vendor/fisharebest/localization/src/Locale/LocaleNmg.php deleted file mode 100644 index 446870ae9b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNmg.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNmg; - -/** - * Class LocaleNmg - Kwasio - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNmg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kwasio'; - } - - public function endonymSortable() - { - return 'KWASIO'; - } - - public function language() - { - return new LanguageNmg(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNmgCm.php b/vendor/fisharebest/localization/src/Locale/LocaleNmgCm.php deleted file mode 100644 index bbc3ef7fe0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNmgCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNmgCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNmgCm extends LocaleNmg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNn.php b/vendor/fisharebest/localization/src/Locale/LocaleNn.php deleted file mode 100644 index 519a978ee6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNn.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNn; - -/** - * Class LocaleNn - Norwegian Nynorsk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNn extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'danish_ci'; - } - - public function endonym() - { - return 'nynorsk'; - } - - public function endonymSortable() - { - return 'NYNORSK'; - } - - public function language() - { - return new LanguageNn(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNnNo.php b/vendor/fisharebest/localization/src/Locale/LocaleNnNo.php deleted file mode 100644 index 2eb7ad45d9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNnNo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNnNo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNnNo extends LocaleNn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNnh.php b/vendor/fisharebest/localization/src/Locale/LocaleNnh.php deleted file mode 100644 index f49a65aad6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNnh.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNnh; - -/** - * Class LocaleNnh - Ngiemboon - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNnh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Shwóŋò ngiembɔɔn'; - } - - public function endonymSortable() - { - return 'SHWONO NGIEMBOON'; - } - - public function language() - { - return new LanguageNnh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNnhCm.php b/vendor/fisharebest/localization/src/Locale/LocaleNnhCm.php deleted file mode 100644 index 21f85fd017..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNnhCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNnhCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNnhCm extends LocaleNnh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNqo.php b/vendor/fisharebest/localization/src/Locale/LocaleNqo.php deleted file mode 100644 index dfce4f33ba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNqo.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNqo; - -/** - * Class LocaleNko - N'Ko - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNqo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ߒߞߏ'; - } - - public function language() - { - return new LanguageNqo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNr.php b/vendor/fisharebest/localization/src/Locale/LocaleNr.php deleted file mode 100644 index af5b73474e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNr.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNr; - -/** - * Class LocaleNr - South Ndebele - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'isiNdebele'; - } - - public function endonymSortable() - { - return 'ISINDEBELE'; - } - - public function language() - { - return new LanguageNr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNrZa.php b/vendor/fisharebest/localization/src/Locale/LocaleNrZa.php deleted file mode 100644 index afe96392ca..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNrZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNrZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNrZa extends LocaleNr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNso.php b/vendor/fisharebest/localization/src/Locale/LocaleNso.php deleted file mode 100644 index 5e4aa77af7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNso.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNso; - -/** - * Class LocaleNso - Northern Sotho - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNso extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Sesotho sa Leboa'; - } - - public function endonymSortable() - { - return 'SESOTHO SA LEBOA'; - } - - public function language() - { - return new LanguageNso(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNsoZa.php b/vendor/fisharebest/localization/src/Locale/LocaleNsoZa.php deleted file mode 100644 index e965c2eb0a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNsoZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNsoZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNsoZa extends LocaleNso -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNus.php b/vendor/fisharebest/localization/src/Locale/LocaleNus.php deleted file mode 100644 index 1decb913d7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNus.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNus; - -/** - * Class LocaleNus - Nuer - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNus extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Thok Nath'; - } - - public function endonymSortable() - { - return 'THOK NATH'; - } - - public function language() - { - return new LanguageNus(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNusSd.php b/vendor/fisharebest/localization/src/Locale/LocaleNusSd.php deleted file mode 100644 index 6cf1f58ee2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNusSd.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNusSd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNusSd extends LocaleNus -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNusSs.php b/vendor/fisharebest/localization/src/Locale/LocaleNusSs.php deleted file mode 100644 index fbe6058a47..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNusSs.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySs; - -/** - * Class LocaleNusSd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNusSs extends LocaleNus -{ - public function territory() - { - return new TerritorySs(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNy.php b/vendor/fisharebest/localization/src/Locale/LocaleNy.php deleted file mode 100644 index 5def477903..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNy.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNy; - -/** - * Class LocaleNy - Chewa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Chichewa'; - } - - public function endonymSortable() - { - return 'CHICHEWA'; - } - - public function language() - { - return new LanguageNy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNyMw.php b/vendor/fisharebest/localization/src/Locale/LocaleNyMw.php deleted file mode 100644 index 713374da58..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNyMw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMw; - -/** - * Class LocaleNyMw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNyMw extends LocaleNy -{ - public function territory() - { - return new TerritoryMw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNyn.php b/vendor/fisharebest/localization/src/Locale/LocaleNyn.php deleted file mode 100644 index ee8884a3d3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNyn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageNyn; - -/** - * Class LocaleNyn - Nyankole - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNyn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Runyankore'; - } - - public function endonymSortable() - { - return 'RUNYANKORE'; - } - - public function language() - { - return new LanguageNyn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleNynUg.php b/vendor/fisharebest/localization/src/Locale/LocaleNynUg.php deleted file mode 100644 index d9b9353875..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleNynUg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleNynUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleNynUg extends LocaleNyn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOc.php b/vendor/fisharebest/localization/src/Locale/LocaleOc.php deleted file mode 100644 index c58915fe64..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOc.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageOc; - -/** - * Class LocaleOc - Occitan - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOc extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'lenga d’òc'; - } - - public function language() - { - return new LanguageOc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOm.php b/vendor/fisharebest/localization/src/Locale/LocaleOm.php deleted file mode 100644 index c992473e0a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOm.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageOm; - -/** - * Class LocaleOm - Oromo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOm extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Oromoo'; - } - - public function endonymSortable() - { - return 'OROMOO'; - } - - public function language() - { - return new LanguageOm(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOmEt.php b/vendor/fisharebest/localization/src/Locale/LocaleOmEt.php deleted file mode 100644 index c9f85c06b4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOmEt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleOmEt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOmEt extends LocaleOm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOmKe.php b/vendor/fisharebest/localization/src/Locale/LocaleOmKe.php deleted file mode 100644 index 5ac8a5d0d6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOmKe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LocaleOmKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOmKe extends LocaleOm -{ - public function territory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOr.php b/vendor/fisharebest/localization/src/Locale/LocaleOr.php deleted file mode 100644 index c42f40e948..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOr.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageOr; - -/** - * Class LocaleOr - Oriya - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOr extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'ଓଡ଼ିଆ'; - } - - public function language() - { - return new LanguageOr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOrIn.php b/vendor/fisharebest/localization/src/Locale/LocaleOrIn.php deleted file mode 100644 index 0ee9559751..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOrIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleOrIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOrIn extends LocaleOr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOs.php b/vendor/fisharebest/localization/src/Locale/LocaleOs.php deleted file mode 100644 index 636ba5cfcc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOs.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageOs; -use Fisharebest\Localization\Territory\TerritoryRu; - -/** - * Class LocaleOs - Ossetic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ирон'; - } - - public function endonymSortable() - { - return 'ИРОН'; - } - - public function language() - { - return new LanguageOs(); - } - - public function territory() - { - return new TerritoryRu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOsGe.php b/vendor/fisharebest/localization/src/Locale/LocaleOsGe.php deleted file mode 100644 index 4253c07d7b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOsGe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGe; - -/** - * Class LocaleOsGe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOsGe extends LocaleOs -{ - public function territory() - { - return new TerritoryGe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleOsRu.php b/vendor/fisharebest/localization/src/Locale/LocaleOsRu.php deleted file mode 100644 index 1394b1dd2e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleOsRu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleOsRu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleOsRu extends LocaleOs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePa.php b/vendor/fisharebest/localization/src/Locale/LocalePa.php deleted file mode 100644 index 8640103ba9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguagePa; - -/** - * Class LocalePa - Punjabi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePa extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'ਪੰਜਾਬੀ'; - } - - public function language() - { - return new LanguagePa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePaArab.php b/vendor/fisharebest/localization/src/Locale/LocalePaArab.php deleted file mode 100644 index 936fe6be6d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePaArab.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptArab; - -/** - * Class LocalePaArab - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePaArab extends LocalePa -{ - public function numberSymbols() - { - return array( - self::DECIMAL => self::ARAB_DECIMAL, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } - - public function script() - { - return new ScriptArab(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePaArabPk.php b/vendor/fisharebest/localization/src/Locale/LocalePaArabPk.php deleted file mode 100644 index 93f75e2e72..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePaArabPk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryPk; - -/** - * Class LocalePaArabPk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePaArabPk extends LocalePaArab -{ - public function territory() - { - return new TerritoryPk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePaGuru.php b/vendor/fisharebest/localization/src/Locale/LocalePaGuru.php deleted file mode 100644 index 9f763f8eba..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePaGuru.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocalePaGuru - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePaGuru extends LocalePa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePaGuruIn.php b/vendor/fisharebest/localization/src/Locale/LocalePaGuruIn.php deleted file mode 100644 index 932b65ae7b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePaGuruIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocalePaGuruIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePaGuruIn extends LocalePaGuru -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePap.php b/vendor/fisharebest/localization/src/Locale/LocalePap.php deleted file mode 100644 index 6cd064e3fd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePap.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguagePap; - -/** - * Class LocalePap - Papiamentu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePap extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Papiamentu'; - } - - public function endonymSortable() - { - return 'PAPIAMENTU'; - } - - public function language() - { - return new LanguagePap(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePl.php b/vendor/fisharebest/localization/src/Locale/LocalePl.php deleted file mode 100644 index b7ce7b9aa9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePl.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguagePl; - -/** - * Class LocalePl - Polish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePl extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'polish_ci'; - } - - public function endonym() - { - return 'polski'; - } - - public function endonymSortable() - { - return 'POLSKI'; - } - - public function language() - { - return new LanguagePl(); - } - - protected function minimumGroupingDigits() - { - return 2; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePlPl.php b/vendor/fisharebest/localization/src/Locale/LocalePlPl.php deleted file mode 100644 index 5ea8d4a02c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePlPl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocalePlPl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePlPl extends LocalePl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePrg.php b/vendor/fisharebest/localization/src/Locale/LocalePrg.php deleted file mode 100644 index 2b6c4dd82e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePrg.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguagePrg; - -/** - * Class LocalePrg - Old Prussian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePrg extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'latvian_ci'; - } - - public function endonym() - { - return 'prūsiskan'; - } - - public function endonymSortable() - { - return 'PRŪSISKAN'; - } - - public function language() - { - return new LanguagePrg(); - } - - protected function minimumGroupingDigits() - { - return 3; - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePrg001.php b/vendor/fisharebest/localization/src/Locale/LocalePrg001.php deleted file mode 100644 index 2e9bbd8701..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePrg001.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocalePrg - Old Prussian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePrg001 extends LocalePrg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePs.php b/vendor/fisharebest/localization/src/Locale/LocalePs.php deleted file mode 100644 index 8e955fe7d3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePs.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguagePs; - -/** - * Class LocalePs - Pashto - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'پښتو'; - } - - public function language() - { - return new LanguagePs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::LTR_MARK . self::HYPHEN . self::LTR_MARK, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePsAf.php b/vendor/fisharebest/localization/src/Locale/LocalePsAf.php deleted file mode 100644 index a6931c3b11..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePsAf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAf; - -/** - * Class LocalePsAf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePsAf extends LocalePs -{ - public function territory() - { - return new TerritoryAf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePt.php b/vendor/fisharebest/localization/src/Locale/LocalePt.php deleted file mode 100644 index e88f44d611..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePt.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguagePt; - -/** - * Class LocalePt - Portuguese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePt extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'português'; - } - - public function endonymSortable() - { - return 'PORTUGUES'; - } - - public function language() - { - return new LanguagePt(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtAo.php b/vendor/fisharebest/localization/src/Locale/LocalePtAo.php deleted file mode 100644 index 4db5fd004a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtAo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAo; - -/** - * Class LocalePtAo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtAo extends LocalePt -{ - public function territory() - { - return new TerritoryAo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtBr.php b/vendor/fisharebest/localization/src/Locale/LocalePtBr.php deleted file mode 100644 index becc95b8c4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtBr.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\PluralRule\PluralRule2; -use Fisharebest\Localization\Territory\TerritoryBr; - -/** - * Class LocalePtBr - Brazilian Portuguese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtBr extends LocalePt -{ - public function endonym() - { - return 'português do Brasil'; - } - - public function endonymSortable() - { - return 'PORTUGUES DO BRASIL'; - } - - public function pluralRule() - { - return new PluralRule2(); - } - - public function territory() - { - return new TerritoryBr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtCh.php b/vendor/fisharebest/localization/src/Locale/LocalePtCh.php deleted file mode 100644 index 2e8ee52de7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtCh.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCh; - -/** - * Class LocalePtCh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtCh extends LocalePt -{ - public function territory() - { - return new TerritoryCh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtCv.php b/vendor/fisharebest/localization/src/Locale/LocalePtCv.php deleted file mode 100644 index 3414373a18..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtCv.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCv; - -/** - * Class LocalePtCv - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtCv extends LocalePt -{ - public function territory() - { - return new TerritoryCv(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtGq.php b/vendor/fisharebest/localization/src/Locale/LocalePtGq.php deleted file mode 100644 index 92dce3ab07..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtGq.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGq; - -/** - * Class LocalePtGq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtGq extends LocalePt -{ - public function territory() - { - return new TerritoryGq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtGw.php b/vendor/fisharebest/localization/src/Locale/LocalePtGw.php deleted file mode 100644 index 86d9a633f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtGw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryGw; - -/** - * Class LocalePtGw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtGw extends LocalePt -{ - public function territory() - { - return new TerritoryGw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtLu.php b/vendor/fisharebest/localization/src/Locale/LocalePtLu.php deleted file mode 100644 index a652188cfc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtLu.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLu; - -/** - * Class LocalePtLu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtLu extends LocalePt -{ - public function territory() - { - return new TerritoryLu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtMo.php b/vendor/fisharebest/localization/src/Locale/LocalePtMo.php deleted file mode 100644 index f1432de309..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtMo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMo; - -/** - * Class LocalePtMo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtMo extends LocalePt -{ - public function territory() - { - return new TerritoryMo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtMz.php b/vendor/fisharebest/localization/src/Locale/LocalePtMz.php deleted file mode 100644 index e80e6fb9fa..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtMz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMz; - -/** - * Class LocalePtMz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtMz extends LocalePt -{ - public function territory() - { - return new TerritoryMz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtPt.php b/vendor/fisharebest/localization/src/Locale/LocalePtPt.php deleted file mode 100644 index 53f5fbcb97..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtPt.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocalePtPt - European Portuguese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtPt extends LocalePt -{ - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtSt.php b/vendor/fisharebest/localization/src/Locale/LocalePtSt.php deleted file mode 100644 index 005a3146a8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtSt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySt; - -/** - * Class LocalePtSt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtSt extends LocalePt -{ - public function territory() - { - return new TerritorySt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocalePtTl.php b/vendor/fisharebest/localization/src/Locale/LocalePtTl.php deleted file mode 100644 index c1e766812c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocalePtTl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTl; - -/** - * Class LocalePtTl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocalePtTl extends LocalePt -{ - public function territory() - { - return new TerritoryTl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleQu.php b/vendor/fisharebest/localization/src/Locale/LocaleQu.php deleted file mode 100644 index 2aeabb7241..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleQu.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageQu; - -/** - * Class LocaleQu - Quechua - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleQu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Runasimi'; - } - - public function endonymSortable() - { - return 'RUNASIMI'; - } - - public function language() - { - return new LanguageQu(); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleQuBo.php b/vendor/fisharebest/localization/src/Locale/LocaleQuBo.php deleted file mode 100644 index 2feb177d12..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleQuBo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBo; - -/** - * Class LocaleQuBo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleQuBo extends LocaleQu -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryBo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleQuEc.php b/vendor/fisharebest/localization/src/Locale/LocaleQuEc.php deleted file mode 100644 index e0c935f7f5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleQuEc.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEc; - -/** - * Class LocaleQuEc - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleQuEc extends LocaleQu -{ - public function territory() - { - return new TerritoryEc(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleQuPe.php b/vendor/fisharebest/localization/src/Locale/LocaleQuPe.php deleted file mode 100644 index 6560a3a891..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleQuPe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleQuPe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleQuPe extends LocaleQu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRm.php b/vendor/fisharebest/localization/src/Locale/LocaleRm.php deleted file mode 100644 index 17c6822aaf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRm.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRm; - -/** - * Class LocaleRm - Romansh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRm extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'rumantsch'; - } - - public function endonymSortable() - { - return 'RUMANTSCH'; - } - - public function language() - { - return new LanguageRm(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::APOSTROPHE, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRmCh.php b/vendor/fisharebest/localization/src/Locale/LocaleRmCh.php deleted file mode 100644 index e3e86cfa55..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRmCh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRmCh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRmCh extends LocaleRm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRn.php b/vendor/fisharebest/localization/src/Locale/LocaleRn.php deleted file mode 100644 index 5794f28932..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRn.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRn; - -/** - * Class LocaleRn - Rundi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ikirundi'; - } - - public function endonymSortable() - { - return 'IKIRUNDI'; - } - - public function language() - { - return new LanguageRn(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRnBi.php b/vendor/fisharebest/localization/src/Locale/LocaleRnBi.php deleted file mode 100644 index d578fbbf00..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRnBi.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRnBi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRnBi extends LocaleRn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRo.php b/vendor/fisharebest/localization/src/Locale/LocaleRo.php deleted file mode 100644 index 2290b2f598..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRo.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRo; - -/** - * Class LocaleRo - Romanian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRo extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'romanian_ci'; - } - - public function endonym() - { - return 'română'; - } - - public function endonymSortable() - { - return 'ROMANA'; - } - - public function language() - { - return new LanguageRo(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRoMd.php b/vendor/fisharebest/localization/src/Locale/LocaleRoMd.php deleted file mode 100644 index 654630e9f1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRoMd.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMd; - -/** - * Class LocaleRoMd - Moldavian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRoMd extends LocaleRo -{ - public function endonym() - { - return 'moldovenească'; - } - - public function endonymSortable() - { - return 'MOLDOVENEASCA'; - } - - public function territory() - { - return new TerritoryMd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRoRo.php b/vendor/fisharebest/localization/src/Locale/LocaleRoRo.php deleted file mode 100644 index 4fb3e7cf7a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRoRo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRoRo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRoRo extends LocaleRo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRof.php b/vendor/fisharebest/localization/src/Locale/LocaleRof.php deleted file mode 100644 index 0c03555eb9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRof.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRof; - -/** - * Class LocaleRof - Rombo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRof extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kihorombo'; - } - - public function endonymSortable() - { - return 'KIHOROMBO'; - } - - public function language() - { - return new LanguageRof(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRofTz.php b/vendor/fisharebest/localization/src/Locale/LocaleRofTz.php deleted file mode 100644 index f2450a6f28..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRofTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRofTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRofTz extends LocaleRof -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRu.php b/vendor/fisharebest/localization/src/Locale/LocaleRu.php deleted file mode 100644 index 0d9a894461..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRu.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRu; - -/** - * Class LocaleRu - Russian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'русский'; - } - - public function endonymSortable() - { - return 'РУССКИЙ'; - } - - public function language() - { - return new LanguageRu(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRuBy.php b/vendor/fisharebest/localization/src/Locale/LocaleRuBy.php deleted file mode 100644 index 65cca92091..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRuBy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBy; - -/** - * Class LocaleRuBy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRuBy extends LocaleRu -{ - public function territory() - { - return new TerritoryBy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRuKg.php b/vendor/fisharebest/localization/src/Locale/LocaleRuKg.php deleted file mode 100644 index ae1ecc57c6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRuKg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKg; - -/** - * Class LocaleRuKg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRuKg extends LocaleRu -{ - public function territory() - { - return new TerritoryKg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRuKz.php b/vendor/fisharebest/localization/src/Locale/LocaleRuKz.php deleted file mode 100644 index 13768b5893..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRuKz.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKz; - -/** - * Class LocaleRuKz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRuKz extends LocaleRu -{ - public function territory() - { - return new TerritoryKz(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRuMd.php b/vendor/fisharebest/localization/src/Locale/LocaleRuMd.php deleted file mode 100644 index ae48c729b8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRuMd.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMd; - -/** - * Class LocaleRuMd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRuMd extends LocaleRu -{ - public function territory() - { - return new TerritoryMd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRuRu.php b/vendor/fisharebest/localization/src/Locale/LocaleRuRu.php deleted file mode 100644 index f18fc575ac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRuRu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRuRu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRuRu extends LocaleRu -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRuUa.php b/vendor/fisharebest/localization/src/Locale/LocaleRuUa.php deleted file mode 100644 index ccf654ca5d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRuUa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUa; - -/** - * Class LocaleRuUa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRuUa extends LocaleRu -{ - public function territory() - { - return new TerritoryUa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRw.php b/vendor/fisharebest/localization/src/Locale/LocaleRw.php deleted file mode 100644 index 66b0f53903..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRw.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRw; - -/** - * Class LocaleRw - Kinyarwanda - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRw extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kinyarwanda'; - } - - public function endonymSortable() - { - return 'KINYARWANDA'; - } - - public function language() - { - return new LanguageRw(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRwRw.php b/vendor/fisharebest/localization/src/Locale/LocaleRwRw.php deleted file mode 100644 index 3b158d20d8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRwRw.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRwRw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRwRw extends LocaleRw -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRwk.php b/vendor/fisharebest/localization/src/Locale/LocaleRwk.php deleted file mode 100644 index 555b3c8049..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRwk.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageRwk; - -/** - * Class LocaleRwk - Rwa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRwk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kiruwa'; - } - - public function endonymSortable() - { - return 'KIRUWA'; - } - - public function language() - { - return new LanguageRwk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleRwkTz.php b/vendor/fisharebest/localization/src/Locale/LocaleRwkTz.php deleted file mode 100644 index b29ff2559f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleRwkTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleRwkTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleRwkTz extends LocaleRwk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSah.php b/vendor/fisharebest/localization/src/Locale/LocaleSah.php deleted file mode 100644 index 95d0bbe258..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSah.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSah; - -/** - * Class LocaleSah - Sakha - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSah extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'саха тыла'; - } - - public function endonymSortable() - { - return 'САХА ТЫЛА'; - } - - public function language() - { - return new LanguageSah(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSahRu.php b/vendor/fisharebest/localization/src/Locale/LocaleSahRu.php deleted file mode 100644 index 5446a44f2d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSahRu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSahRu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSahRu extends LocaleSah -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSaq.php b/vendor/fisharebest/localization/src/Locale/LocaleSaq.php deleted file mode 100644 index 582db7aac0..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSaq.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSaq; - -/** - * Class LocaleSaq - Samburu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSaq extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kisampur'; - } - - public function endonymSortable() - { - return 'KISAMPUR'; - } - - public function language() - { - return new LanguageSaq(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSaqKe.php b/vendor/fisharebest/localization/src/Locale/LocaleSaqKe.php deleted file mode 100644 index e522d105b4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSaqKe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSaqKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSaqKe extends LocaleSaq -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSbp.php b/vendor/fisharebest/localization/src/Locale/LocaleSbp.php deleted file mode 100644 index d9d510ec83..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSbp.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSbp; - -/** - * Class LocaleSbp - Sangu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSbp extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Ishisangu'; - } - - public function endonymSortable() - { - return 'ISHISANGU'; - } - - public function language() - { - return new LanguageSbp(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSbpTz.php b/vendor/fisharebest/localization/src/Locale/LocaleSbpTz.php deleted file mode 100644 index ed6ca993da..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSbpTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSbpTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSbpTz extends LocaleSbp -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleScn.php b/vendor/fisharebest/localization/src/Locale/LocaleScn.php deleted file mode 100644 index 4808ca86fb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleScn.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageScn; - -/** - * Class LocaleScn - Sicilain - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleScn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Sicilianu'; - } - - public function endonymSortable() - { - return 'SICILIANU'; - } - - public function language() - { - return new LanguageScn(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSd.php b/vendor/fisharebest/localization/src/Locale/LocaleSd.php deleted file mode 100644 index 7ee90f4e6e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSd.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSd; - -/** - * Class LocaleScn - Sindhi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSd extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'سنڌي'; - } - - public function language() - { - return new LanguageSd(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::ALM . self::HYPHEN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT . self::ALM; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSdPk.php b/vendor/fisharebest/localization/src/Locale/LocaleSdPk.php deleted file mode 100644 index 03fd5ca248..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSdPk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleScn - Sindhi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSdPk extends LocaleSd -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSe.php b/vendor/fisharebest/localization/src/Locale/LocaleSe.php deleted file mode 100644 index f93dabd88b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSe.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSe; - -/** - * Class LocaleSe - Northern Sami - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'davvisámegiella'; - } - - public function endonymSortable() - { - return 'DAVVISAMEGIELLA'; - } - - public function language() - { - return new LanguageSe(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSeFi.php b/vendor/fisharebest/localization/src/Locale/LocaleSeFi.php deleted file mode 100644 index f1e77d5648..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSeFi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LocaleSeFi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSeFi extends LocaleSe -{ - public function territory() - { - return new TerritoryFi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSeNo.php b/vendor/fisharebest/localization/src/Locale/LocaleSeNo.php deleted file mode 100644 index 559c1d11c3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSeNo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSeNo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSeNo extends LocaleSe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSeSe.php b/vendor/fisharebest/localization/src/Locale/LocaleSeSe.php deleted file mode 100644 index 26574a37c6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSeSe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySe; - -/** - * Class LocaleSeSe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSeSe extends LocaleSe -{ - public function territory() - { - return new TerritorySe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSeh.php b/vendor/fisharebest/localization/src/Locale/LocaleSeh.php deleted file mode 100644 index 74408a1662..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSeh.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSeh; - -/** - * Class LocaleSeh - Sena - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSeh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'sena'; - } - - public function endonymSortable() - { - return 'SENA'; - } - - public function language() - { - return new LanguageSeh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSehMz.php b/vendor/fisharebest/localization/src/Locale/LocaleSehMz.php deleted file mode 100644 index e2a0f1482f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSehMz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSehMz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSehMz extends LocaleSeh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSes.php b/vendor/fisharebest/localization/src/Locale/LocaleSes.php deleted file mode 100644 index 818c4f9d9e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSes.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSes; - -/** - * Class LocaleSes - Koyraboro Senni - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSes extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Koyraboro senni'; - } - - public function endonymSortable() - { - return 'KOYRABORO SENNI'; - } - - public function language() - { - return new LanguageSes(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSesMl.php b/vendor/fisharebest/localization/src/Locale/LocaleSesMl.php deleted file mode 100644 index c0eb1f7b3e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSesMl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSesMl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSesMl extends LocaleSes -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSg.php b/vendor/fisharebest/localization/src/Locale/LocaleSg.php deleted file mode 100644 index 91d3674773..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSg.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSg; - -/** - * Class LocaleSg - Sango - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Sängö'; - } - - public function endonymSortable() - { - return 'SANGO'; - } - - public function language() - { - return new LanguageSg(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSgCf.php b/vendor/fisharebest/localization/src/Locale/LocaleSgCf.php deleted file mode 100644 index e0d269e376..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSgCf.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSgCf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSgCf extends LocaleSg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleShi.php b/vendor/fisharebest/localization/src/Locale/LocaleShi.php deleted file mode 100644 index 8cbbcad2dc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleShi.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageShi; - -/** - * Class LocaleShi - Tachelhit - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleShi extends AbstractLocale implements LocaleInterface -{ - public function direction() - { - return 'ltr'; - } - - public function endonym() - { - return 'ⵜⴰⵛⵍⵃⵉⵜ'; - } - - public function language() - { - return new LanguageShi(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleShiLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleShiLatn.php deleted file mode 100644 index f0c8cd487b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleShiLatn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleShiLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleShiLatn extends LocaleShi -{ - public function endonym() - { - return 'tamazight'; - } - - public function endonymSortable() - { - return 'TAMAZIGHT'; - } - - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleShiLatnMa.php b/vendor/fisharebest/localization/src/Locale/LocaleShiLatnMa.php deleted file mode 100644 index 5f1450f693..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleShiLatnMa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleShiLatnMa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleShiLatnMa extends LocaleShiLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleShiTfng.php b/vendor/fisharebest/localization/src/Locale/LocaleShiTfng.php deleted file mode 100644 index fee068ee4c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleShiTfng.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleShiTfng - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleShiTfng extends LocaleShi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleShiTfngMa.php b/vendor/fisharebest/localization/src/Locale/LocaleShiTfngMa.php deleted file mode 100644 index 40d9c14a22..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleShiTfngMa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleShiTfngMa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleShiTfngMa extends LocaleShiTfng -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSi.php b/vendor/fisharebest/localization/src/Locale/LocaleSi.php deleted file mode 100644 index ccd246aaf8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSi.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSi; - -/** - * Class LocaleSi - Sinhala - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSi extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'sinhala_ci'; - } - - public function endonym() - { - return 'සිංහල'; - } - - public function language() - { - return new LanguageSi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSiLk.php b/vendor/fisharebest/localization/src/Locale/LocaleSiLk.php deleted file mode 100644 index 2d108a2cfb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSiLk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSiLk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSiLk extends LocaleSi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSk.php b/vendor/fisharebest/localization/src/Locale/LocaleSk.php deleted file mode 100644 index fe08cfb794..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSk.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSk; - -/** - * Class LocaleSk - Slovak - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSk extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'slovak_ci'; - } - - public function endonym() - { - return 'slovenčina'; - } - - public function endonymSortable() - { - return 'SLOVENCINA'; - } - - public function language() - { - return new LanguageSk(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSkSk.php b/vendor/fisharebest/localization/src/Locale/LocaleSkSk.php deleted file mode 100644 index 91c4a48e6c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSkSk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSkSk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSkSk extends LocaleSk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSl.php b/vendor/fisharebest/localization/src/Locale/LocaleSl.php deleted file mode 100644 index 1b79d10582..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSl.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSl; - -/** - * Class LocaleSl - Slovenian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSl extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'slovenian_ci'; - } - - public function endonym() - { - return 'slovenščina'; - } - - public function endonymSortable() - { - return 'SLOVENSCINA'; - } - - public function language() - { - return new LanguageSl(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - public function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSlSi.php b/vendor/fisharebest/localization/src/Locale/LocaleSlSi.php deleted file mode 100644 index b4941d9422..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSlSi.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSlSi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSlSi extends LocaleSl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSma.php b/vendor/fisharebest/localization/src/Locale/LocaleSma.php deleted file mode 100644 index f761130a1c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSma.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSma; - -/** - * Class LocaleSma - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSma extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Åarjelsaemien gïele'; - } - - public function endonymSortable() - { - return 'AARJELSAMIEN GIELE'; - } - - public function language() - { - return new LanguageSma(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSmi.php b/vendor/fisharebest/localization/src/Locale/LocaleSmi.php deleted file mode 100644 index 45aba09699..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSmi.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSmi; - -/** - * Class LocaleSmi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSmi extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'saami'; - } - - public function endonymSortable() - { - return 'SAAMI'; - } - - public function language() - { - return new LanguageSmi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSmj.php b/vendor/fisharebest/localization/src/Locale/LocaleSmj.php deleted file mode 100644 index cc6aad19b4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSmj.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSmj; - -/** - * Class LocaleSmj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSmj extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'julevsámegiella'; - } - - public function endonymSortable() - { - return 'JULEVSAMEGIELLA'; - } - - public function language() - { - return new LanguageSmj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSmn.php b/vendor/fisharebest/localization/src/Locale/LocaleSmn.php deleted file mode 100644 index 3b70a6b4e3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSmn.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSmn; - -/** - * Class LocaleSmn - Inari Sami - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSmn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'anarâškielâ'; - } - - public function endonymSortable() - { - return 'ANARASKIELA'; - } - - public function language() - { - return new LanguageSmn(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - public function percentFormat() - { - return self::PLACEHOLDER . self:: NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSmnFi.php b/vendor/fisharebest/localization/src/Locale/LocaleSmnFi.php deleted file mode 100644 index b1c86371c8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSmnFi.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSmnFi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSmnFi extends LocaleSmn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSms.php b/vendor/fisharebest/localization/src/Locale/LocaleSms.php deleted file mode 100644 index 366340e8d1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSms.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSms; - -/** - * Class LocaleSms - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSms extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'sääʹmǩiõll'; - } - - public function endonymSortable() - { - return 'SAA MKIOLL'; - } - - public function language() - { - return new LanguageSms(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSn.php b/vendor/fisharebest/localization/src/Locale/LocaleSn.php deleted file mode 100644 index 7e863618ab..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSn; - -/** - * Class LocaleSn - Shona - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'chiShona'; - } - - public function endonymSortable() - { - return 'CHISHONA'; - } - - public function language() - { - return new LanguageSn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSnZw.php b/vendor/fisharebest/localization/src/Locale/LocaleSnZw.php deleted file mode 100644 index 222d07382a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSnZw.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSnZw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSnZw extends LocaleSn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSo.php b/vendor/fisharebest/localization/src/Locale/LocaleSo.php deleted file mode 100644 index 2dc60e9a11..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSo; - -/** - * Class LocaleSo - Somali - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Soomaali'; - } - - public function endonymSortable() - { - return 'SOOMAALI'; - } - - public function language() - { - return new LanguageSo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSoDj.php b/vendor/fisharebest/localization/src/Locale/LocaleSoDj.php deleted file mode 100644 index ead59e39d2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSoDj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryDj; - -/** - * Class LocaleSoDj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSoDj extends LocaleSo -{ - public function territory() - { - return new TerritoryDj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSoEt.php b/vendor/fisharebest/localization/src/Locale/LocaleSoEt.php deleted file mode 100644 index a83ec0bd8c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSoEt.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEt; - -/** - * Class LocaleSoEt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSoEt extends LocaleSo -{ - public function territory() - { - return new TerritoryEt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSoKe.php b/vendor/fisharebest/localization/src/Locale/LocaleSoKe.php deleted file mode 100644 index a6d72988bb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSoKe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LocaleSoKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSoKe extends LocaleSo -{ - public function territory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSoSo.php b/vendor/fisharebest/localization/src/Locale/LocaleSoSo.php deleted file mode 100644 index 2adb4434ef..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSoSo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSoSo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSoSo extends LocaleSo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSq.php b/vendor/fisharebest/localization/src/Locale/LocaleSq.php deleted file mode 100644 index 2213332213..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSq.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSq; - -/** - * Class LocaleSq - Albanian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSq extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'shqip'; - } - - public function endonymSortable() - { - return 'SHQIP'; - } - - public function language() - { - return new LanguageSq(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSqAl.php b/vendor/fisharebest/localization/src/Locale/LocaleSqAl.php deleted file mode 100644 index a3c65459ac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSqAl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSqAl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSqAl extends LocaleSq -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSqMk.php b/vendor/fisharebest/localization/src/Locale/LocaleSqMk.php deleted file mode 100644 index ccb095c1cb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSqMk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMk; - -/** - * Class LocaleSqMk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSqMk extends LocaleSq -{ - public function territory() - { - return new TerritoryMk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSqXk.php b/vendor/fisharebest/localization/src/Locale/LocaleSqXk.php deleted file mode 100644 index 017eafad9c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSqXk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryXk; - -/** - * Class LocaleSqXk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSqXk extends LocaleSq -{ - public function territory() - { - return new TerritoryXk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSr.php b/vendor/fisharebest/localization/src/Locale/LocaleSr.php deleted file mode 100644 index ca1099fc1a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSr.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSr; - -/** - * Class LocaleSr - Serbian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'српски'; - } - - public function endonymSortable() - { - return 'СРПСКИ'; - } - - public function language() - { - return new LanguageSr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrl.php b/vendor/fisharebest/localization/src/Locale/LocaleSrCyrl.php deleted file mode 100644 index 484b6f78b3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrl.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSrCyrl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrCyrl extends LocaleSr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlBa.php b/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlBa.php deleted file mode 100644 index 0429cea073..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlBa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBa; - -/** - * Class LocaleSrCyrlBa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrCyrlBa extends LocaleSrCyrl -{ - public function territory() - { - return new TerritoryBa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlMe.php b/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlMe.php deleted file mode 100644 index 7c3f9b131d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlMe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMe; - -/** - * Class LocaleSrCyrlMe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrCyrlMe extends LocaleSrCyrl -{ - public function territory() - { - return new TerritoryMe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlRs.php b/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlRs.php deleted file mode 100644 index 56c85593bf..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlRs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSrCyrlRs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrCyrlRs extends LocaleSrCyrl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlXk.php b/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlXk.php deleted file mode 100644 index cab192fa27..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrCyrlXk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryXk; - -/** - * Class LocaleSrCyrlXk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrCyrlXk extends LocaleSrCyrl -{ - public function territory() - { - return new TerritoryXk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php deleted file mode 100644 index e23f21cd93..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleSrLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrLatn extends LocaleSr -{ - public function endonym() - { - return 'srpski'; - } - - public function endonymSortable() - { - return 'SRPSKI'; - } - - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnBa.php b/vendor/fisharebest/localization/src/Locale/LocaleSrLatnBa.php deleted file mode 100644 index 190be575b6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnBa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBa; - -/** - * Class LocaleSrLatnBa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrLatnBa extends LocaleSrLatn -{ - public function territory() - { - return new TerritoryBa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnMe.php b/vendor/fisharebest/localization/src/Locale/LocaleSrLatnMe.php deleted file mode 100644 index 3f76c4f989..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnMe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMe; - -/** - * Class LocaleSrLatnMe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrLatnMe extends LocaleSrLatn -{ - public function territory() - { - return new TerritoryMe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnRs.php b/vendor/fisharebest/localization/src/Locale/LocaleSrLatnRs.php deleted file mode 100644 index d522ff6cc5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnRs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSrLatnRs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrLatnRs extends LocaleSrLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnXk.php b/vendor/fisharebest/localization/src/Locale/LocaleSrLatnXk.php deleted file mode 100644 index 98fb574dc4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSrLatnXk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryXk; - -/** - * Class LocaleSrLatnXk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSrLatnXk extends LocaleSrLatn -{ - public function territory() - { - return new TerritoryXk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSs.php b/vendor/fisharebest/localization/src/Locale/LocaleSs.php deleted file mode 100644 index 7560d3846e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSs.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSs; - -/** - * Class LocaleSs - Swati - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Siswati'; - } - - public function endonymSortable() - { - return 'SISWATI'; - } - - public function language() - { - return new LanguageSs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSsSz.php b/vendor/fisharebest/localization/src/Locale/LocaleSsSz.php deleted file mode 100644 index 6f94ba826f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSsSz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSsSz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSsSz extends LocaleSs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSsZa.php b/vendor/fisharebest/localization/src/Locale/LocaleSsZa.php deleted file mode 100644 index ed9d375c91..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSsZa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LocaleSsZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSsZa extends LocaleSs -{ - public function territory() - { - return new TerritoryZa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSsy.php b/vendor/fisharebest/localization/src/Locale/LocaleSsy.php deleted file mode 100644 index a59e537b22..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSsy.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSsy; - -/** - * Class LocaleSsy - Saho - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSsy extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Saho'; - } - - public function endonymSortable() - { - return 'SAHO'; - } - - public function language() - { - return new LanguageSsy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSsyEr.php b/vendor/fisharebest/localization/src/Locale/LocaleSsyEr.php deleted file mode 100644 index 784d2111e2..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSsyEr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSsyEr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSsyEr extends LocaleSsy -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSt.php b/vendor/fisharebest/localization/src/Locale/LocaleSt.php deleted file mode 100644 index c26936471c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSt.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSt; - -/** - * Class LocaleSt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSt extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Sesotho'; - } - - public function endonymSortable() - { - return 'SESOTHO'; - } - - public function language() - { - return new LanguageSt(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleStLs.php b/vendor/fisharebest/localization/src/Locale/LocaleStLs.php deleted file mode 100644 index a33529b337..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleStLs.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleStLs - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleStLs extends LocaleSt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleStZa.php b/vendor/fisharebest/localization/src/Locale/LocaleStZa.php deleted file mode 100644 index 74569c0827..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleStZa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LocaleStZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleStZa extends LocaleSt -{ - public function territory() - { - return new TerritoryZa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleStZw.php b/vendor/fisharebest/localization/src/Locale/LocaleStZw.php deleted file mode 100644 index cd5a3220b4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleStZw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZw; - -/** - * Class LocaleStZw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleStZw extends LocaleSt -{ - public function territory() - { - return new TerritoryZw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSu.php b/vendor/fisharebest/localization/src/Locale/LocaleSu.php deleted file mode 100644 index 4ad90ef2ae..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSu.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSu; - -/** - * Class LocaleSu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ᮘᮞ ᮞᮥᮔ᮪ᮓ'; - } - - public function language() - { - return new LanguageSu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSuLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleSuLatn.php deleted file mode 100644 index 5b62172b23..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSuLatn.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleSuLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSuLatn extends LocaleSu -{ - public function endonym() - { - return 'Basa Sunda'; - } - - public function endonymSortable() - { - return 'BASA SUNDA'; - } - - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSv.php b/vendor/fisharebest/localization/src/Locale/LocaleSv.php deleted file mode 100644 index a862a59ce8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSv.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSv; - -/** - * Class LocaleSv - Swedish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSv extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'swedish_ci'; - } - - public function endonym() - { - return 'svenska'; - } - - public function endonymSortable() - { - return 'SVENSKA'; - } - - public function language() - { - return new LanguageSv(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - self::NEGATIVE => self::MINUS_SIGN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSvAx.php b/vendor/fisharebest/localization/src/Locale/LocaleSvAx.php deleted file mode 100644 index 2e547ab6fd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSvAx.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAx; - -/** - * Class LocaleSvAx - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSvAx extends LocaleSv -{ - public function territory() - { - return new TerritoryAx(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSvFi.php b/vendor/fisharebest/localization/src/Locale/LocaleSvFi.php deleted file mode 100644 index bfef891fca..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSvFi.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryFi; - -/** - * Class LocaleSvFi - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSvFi extends LocaleSv -{ - public function territory() - { - return new TerritoryFi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSvSe.php b/vendor/fisharebest/localization/src/Locale/LocaleSvSe.php deleted file mode 100644 index 5e19e7cb97..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSvSe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSvSe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSvSe extends LocaleSv -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSw.php b/vendor/fisharebest/localization/src/Locale/LocaleSw.php deleted file mode 100644 index 9fb7118079..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSw.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSw; - -/** - * Class LocaleSw - Swahili - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSw extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kiswahili'; - } - - public function endonymSortable() - { - return 'KISWAHILI'; - } - - public function language() - { - return new LanguageSw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSwCd.php b/vendor/fisharebest/localization/src/Locale/LocaleSwCd.php deleted file mode 100644 index d4574f05c1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSwCd.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCd; - -/** - * Class LocaleSwCd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSwCd extends LocaleSw -{ - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - public function territory() - { - return new TerritoryCd(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSwKe.php b/vendor/fisharebest/localization/src/Locale/LocaleSwKe.php deleted file mode 100644 index 0d773f9121..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSwKe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LocaleSwKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSwKe extends LocaleSw -{ - public function territory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSwTz.php b/vendor/fisharebest/localization/src/Locale/LocaleSwTz.php deleted file mode 100644 index 5e20cfeb97..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSwTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSwTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSwTz extends LocaleSw -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSwUg.php b/vendor/fisharebest/localization/src/Locale/LocaleSwUg.php deleted file mode 100644 index f2b88a0f53..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSwUg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryUg; - -/** - * Class LocaleSwUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSwUg extends LocaleSw -{ - public function territory() - { - return new TerritoryUg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSwc.php b/vendor/fisharebest/localization/src/Locale/LocaleSwc.php deleted file mode 100644 index ae409799a4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSwc.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSwc; - -/** - * Class LocaleSwc - Congo Swahili - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSwc extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kiswahili ya Kongo'; - } - - public function endonymSortable() - { - return 'KISWAHILI YA KONGO'; - } - - public function language() - { - return new LanguageSwc(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSwcCd.php b/vendor/fisharebest/localization/src/Locale/LocaleSwcCd.php deleted file mode 100644 index f81e59b8f7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSwcCd.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleSwcCd - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSwcCd extends LocaleSwc -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSyr.php b/vendor/fisharebest/localization/src/Locale/LocaleSyr.php deleted file mode 100644 index dd22f3242b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleSyr.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageSyr; - -/** - * Class LocaleSyr - Syriac - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleSyr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Syriac'; - } - - public function language() - { - return new LanguageSyr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTa.php b/vendor/fisharebest/localization/src/Locale/LocaleTa.php deleted file mode 100644 index 4eca5b210b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTa; - -/** - * Class LocaleTa - Tamil - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTa extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'தமிழ்'; - } - - public function language() - { - return new LanguageTa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTaIn.php b/vendor/fisharebest/localization/src/Locale/LocaleTaIn.php deleted file mode 100644 index df2147e7a3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTaIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTaIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTaIn extends LocaleTa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTaLk.php b/vendor/fisharebest/localization/src/Locale/LocaleTaLk.php deleted file mode 100644 index 80d1dbd6a8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTaLk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryLk; - -/** - * Class LocaleTaLk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTaLk extends LocaleTa -{ - public function territory() - { - return new TerritoryLk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTaMy.php b/vendor/fisharebest/localization/src/Locale/LocaleTaMy.php deleted file mode 100644 index 881be11f89..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTaMy.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMy; - -/** - * Class LocaleTaMy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTaMy extends LocaleTa -{ - protected function digitsGroup() - { - return 3; - } - - public function territory() - { - return new TerritoryMy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTaSg.php b/vendor/fisharebest/localization/src/Locale/LocaleTaSg.php deleted file mode 100644 index 174784510a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTaSg.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySg; - -/** - * Class LocaleTaSg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTaSg extends LocaleTa -{ - protected function digitsGroup() - { - return 3; - } - - public function territory() - { - return new TerritorySg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTe.php b/vendor/fisharebest/localization/src/Locale/LocaleTe.php deleted file mode 100644 index f92dffb890..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTe.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTe; - -/** - * Class LocaleTe - Telugu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTe extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'తెలుగు'; - } - - public function language() - { - return new LanguageTe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTeIn.php b/vendor/fisharebest/localization/src/Locale/LocaleTeIn.php deleted file mode 100644 index 02bc7cea99..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTeIn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTeIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTeIn extends LocaleTe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTeo.php b/vendor/fisharebest/localization/src/Locale/LocaleTeo.php deleted file mode 100644 index e254104ddb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTeo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTeo; - -/** - * Class LocaleTeo - Teso - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTeo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kiteso'; - } - - public function endonymSortable() - { - return 'KITESO'; - } - - public function language() - { - return new LanguageTeo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTeoKe.php b/vendor/fisharebest/localization/src/Locale/LocaleTeoKe.php deleted file mode 100644 index 4244316a1f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTeoKe.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryKe; - -/** - * Class LocaleTeoKe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTeoKe extends LocaleTeo -{ - public function territory() - { - return new TerritoryKe(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTeoUg.php b/vendor/fisharebest/localization/src/Locale/LocaleTeoUg.php deleted file mode 100644 index 4f73d653d6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTeoUg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTeoUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTeoUg extends LocaleTeo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTg.php b/vendor/fisharebest/localization/src/Locale/LocaleTg.php deleted file mode 100644 index 263c23c6ab..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTg.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTg; - -/** - * Class LocaleTg - Tajik - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'тоҷикӣ'; - } - - public function language() - { - return new LanguageTg(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTgTj.php b/vendor/fisharebest/localization/src/Locale/LocaleTgTj.php deleted file mode 100644 index c0eed6b9e7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTgTj.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTgTj - Tajik - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTgTj extends LocaleTg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTh.php b/vendor/fisharebest/localization/src/Locale/LocaleTh.php deleted file mode 100644 index 4fc06a3c92..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTh.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTh; - -/** - * Class LocaleTh - Thai - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ไทย'; - } - - public function language() - { - return new LanguageTh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleThTh.php b/vendor/fisharebest/localization/src/Locale/LocaleThTh.php deleted file mode 100644 index defa8318a1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleThTh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleThTh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleThTh extends LocaleTh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTi.php b/vendor/fisharebest/localization/src/Locale/LocaleTi.php deleted file mode 100644 index 4c23fe9bf8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTi.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTi; - -/** - * Class LocaleTi - Tigrinya - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTi extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ትግርኛ'; - } - - public function language() - { - return new LanguageTi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTiEr.php b/vendor/fisharebest/localization/src/Locale/LocaleTiEr.php deleted file mode 100644 index d2708378a8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTiEr.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryEr; - -/** - * Class LocaleTiEr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTiEr extends LocaleTi -{ - public function territory() - { - return new TerritoryEr(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTiEt.php b/vendor/fisharebest/localization/src/Locale/LocaleTiEt.php deleted file mode 100644 index 57b4cff46c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTiEt.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTiEt - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTiEt extends LocaleTi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTig.php b/vendor/fisharebest/localization/src/Locale/LocaleTig.php deleted file mode 100644 index c61aab8cb5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTig.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTig; - -/** - * Class LocaleTig - Tigre - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTig extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ትግራይት'; - } - - public function language() - { - return new LanguageTig(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTigEr.php b/vendor/fisharebest/localization/src/Locale/LocaleTigEr.php deleted file mode 100644 index 5229d832fc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTigEr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTig - Tigre - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTigEr extends LocaleTig -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTk.php b/vendor/fisharebest/localization/src/Locale/LocaleTk.php deleted file mode 100644 index 91cbc92768..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTk.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTk; - -/** - * Class LocaleTk - Turkmen - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'türkmen dili'; - } - - public function endonymSortable() - { - return 'TURKMEN DILI'; - } - - public function language() - { - return new LanguageTk(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTkArab.php b/vendor/fisharebest/localization/src/Locale/LocaleTkArab.php deleted file mode 100644 index 798f8a8dc4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTkArab.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTkArab - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTkArab extends LocaleTk -{ - public function endonym() - { - return 'تورکمنچه'; - } - - public function endonymSortable() - { - return 'تورکمنچه'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTkArabTm.php b/vendor/fisharebest/localization/src/Locale/LocaleTkArabTm.php deleted file mode 100644 index d629fdf5af..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTkArabTm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTkArabTm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTkArabTm extends LocaleTkArab -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTkCyrl.php b/vendor/fisharebest/localization/src/Locale/LocaleTkCyrl.php deleted file mode 100644 index 643b9698b7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTkCyrl.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTkCyrl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTkCyrl extends LocaleTk -{ - public function endonym() - { - return 'түркменче'; - } - - public function endonymSortable() - { - return 'түркменче'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTkCyrlTm.php b/vendor/fisharebest/localization/src/Locale/LocaleTkCyrlTm.php deleted file mode 100644 index 683b652198..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTkCyrlTm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTkTm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTkCyrlTm extends LocaleTkCyrl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTkTm.php b/vendor/fisharebest/localization/src/Locale/LocaleTkTm.php deleted file mode 100644 index 782a52be9c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTkTm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTkTm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTkTm extends LocaleTk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTl.php b/vendor/fisharebest/localization/src/Locale/LocaleTl.php deleted file mode 100644 index 69f0437097..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTl.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTl; - -/** - * Class LocaleTl - Tagalog - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTl extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Tagalog'; - } - - public function endonymSortable() - { - return 'TAGALOG'; - } - - public function language() - { - return new LanguageTl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTlPh.php b/vendor/fisharebest/localization/src/Locale/LocaleTlPh.php deleted file mode 100644 index c20b6b008e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTlPh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTlPh - Tagalog - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTlPh extends LocaleTl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTn.php b/vendor/fisharebest/localization/src/Locale/LocaleTn.php deleted file mode 100644 index 9dd4223bb8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTn.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTn; - -/** - * Class LocaleTn - Tswana - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTn extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Setswana'; - } - - public function endonymSortable() - { - return 'SETSWANA'; - } - - public function language() - { - return new LanguageTn(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTnBw.php b/vendor/fisharebest/localization/src/Locale/LocaleTnBw.php deleted file mode 100644 index 9d924fae63..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTnBw.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTnBw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTnBw extends LocaleTn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTnZa.php b/vendor/fisharebest/localization/src/Locale/LocaleTnZa.php deleted file mode 100644 index 9bca35fddc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTnZa.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryZa; - -/** - * Class LocaleTnZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTnZa extends LocaleTn -{ - public function territory() - { - return new TerritoryZa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTo.php b/vendor/fisharebest/localization/src/Locale/LocaleTo.php deleted file mode 100644 index 9867259ecb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTo; - -/** - * Class LocaleTo - Tongan - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'lea fakatonga'; - } - - public function endonymSortable() - { - return 'LEA FAKATONGA'; - } - - public function language() - { - return new LanguageTo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleToTo.php b/vendor/fisharebest/localization/src/Locale/LocaleToTo.php deleted file mode 100644 index c909b72212..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleToTo.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleToTo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleToTo extends LocaleTo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTr.php b/vendor/fisharebest/localization/src/Locale/LocaleTr.php deleted file mode 100644 index e75154c4ef..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTr.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTr; - -/** - * Class LocaleTr - Turkish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTr extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'turkish_ci'; - } - - public function endonym() - { - return 'Türkçe'; - } - - public function endonymSortable() - { - return 'TURKCE'; - } - - public function language() - { - return new LanguageTr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PERCENT . '%s'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTrCy.php b/vendor/fisharebest/localization/src/Locale/LocaleTrCy.php deleted file mode 100644 index 6d57944453..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTrCy.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryCy; - -/** - * Class LocaleTrCy - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTrCy extends LocaleTr -{ - public function territory() - { - return new TerritoryCy(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTrTr.php b/vendor/fisharebest/localization/src/Locale/LocaleTrTr.php deleted file mode 100644 index 4701fc5cac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTrTr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTrTr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTrTr extends LocaleTr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTs.php b/vendor/fisharebest/localization/src/Locale/LocaleTs.php deleted file mode 100644 index 9b1bdc6cac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTs.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTs; - -/** - * Class LocaleTs - Tsonga - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTs extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Xitsonga'; - } - - public function endonymSortable() - { - return 'XITSONGA'; - } - - public function language() - { - return new LanguageTs(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTsZa.php b/vendor/fisharebest/localization/src/Locale/LocaleTsZa.php deleted file mode 100644 index 7f4676fa6d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTsZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTsZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTsZa extends LocaleTs -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTt.php b/vendor/fisharebest/localization/src/Locale/LocaleTt.php deleted file mode 100644 index a9c71de588..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTt.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTt; - -/** - * Class LocaleTt - Tatar - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTt extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'татар'; - } - - public function endonymSortable() - { - return 'ТАТАР'; - } - - public function language() - { - return new LanguageTt(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTtRu.php b/vendor/fisharebest/localization/src/Locale/LocaleTtRu.php deleted file mode 100644 index 54058319ac..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTtRu.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTtRu - Tatar - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTtRu extends LocaleTt -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTwq.php b/vendor/fisharebest/localization/src/Locale/LocaleTwq.php deleted file mode 100644 index cf317fc519..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTwq.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTwq; - -/** - * Class LocaleTwq - Tasawaq - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTwq extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Tasawaq senni'; - } - - public function endonymSortable() - { - return 'TASAWAQ SENNI'; - } - - public function language() - { - return new LanguageTwq(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTwqNe.php b/vendor/fisharebest/localization/src/Locale/LocaleTwqNe.php deleted file mode 100644 index c1c91513d6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTwqNe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTwqNe - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTwqNe extends LocaleTwq -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTzm.php b/vendor/fisharebest/localization/src/Locale/LocaleTzm.php deleted file mode 100644 index 2a26e6a75a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTzm.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageTzm; - -/** - * Class LocaleTzm - Central Atlas Tamazight - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTzm extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Tamaziɣt n laṭlaṣ'; - } - - public function endonymSortable() - { - return 'TAMAZIGHT N LATLAS'; - } - - public function language() - { - return new LanguageTzm(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleTzmMa.php b/vendor/fisharebest/localization/src/Locale/LocaleTzmMa.php deleted file mode 100644 index 6c6848985e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleTzmMa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleTzmMa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleTzmMa extends LocaleTzm -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUg.php b/vendor/fisharebest/localization/src/Locale/LocaleUg.php deleted file mode 100644 index 9acaeb1930..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUg.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageUg; - -/** - * Class LocaleUg - Uyghur - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUg extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ئۇيغۇرچە'; - } - - public function language() - { - return new LanguageUg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUgCn.php b/vendor/fisharebest/localization/src/Locale/LocaleUgCn.php deleted file mode 100644 index 293163f4cb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUgCn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleUgCn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUgCn extends LocaleUg -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUk.php b/vendor/fisharebest/localization/src/Locale/LocaleUk.php deleted file mode 100644 index 47087fd836..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUk.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageUk; - -/** - * Class LocaleUk - Ukrainian - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'українська'; - } - - public function endonymSortable() - { - return 'УКРАЇНСЬКА'; - } - - public function language() - { - return new LanguageUk(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUkUa.php b/vendor/fisharebest/localization/src/Locale/LocaleUkUa.php deleted file mode 100644 index e1be3e19b4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUkUa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleUkUa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUkUa extends LocaleUk -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUr.php b/vendor/fisharebest/localization/src/Locale/LocaleUr.php deleted file mode 100644 index 6efe0f958f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUr.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageUr; - -/** - * Class LocaleUr - Urdu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUr extends AbstractLocale implements LocaleInterface -{ - protected function digitsGroup() - { - return 2; - } - - public function endonym() - { - return 'اردو'; - } - - public function language() - { - return new LanguageUr(); - } - - public function numberSymbols() - { - return array( - self::NEGATIVE => self::LTR_MARK . self::HYPHEN, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUrIn.php b/vendor/fisharebest/localization/src/Locale/LocaleUrIn.php deleted file mode 100644 index fa011ceae3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUrIn.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryIn; - -/** - * Class LocaleUrIn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUrIn extends LocaleUr -{ - public function territory() - { - return new TerritoryIn(); - } - - public function numberSymbols() - { - return array( - self::DECIMAL => self::ARAB_DECIMAL, - self::GROUP => self::ARAB_GROUP, - self::NEGATIVE => self::LTR_MARK . self::HYPHEN . self::LTR_MARK, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUrPk.php b/vendor/fisharebest/localization/src/Locale/LocaleUrPk.php deleted file mode 100644 index f8d1f569ca..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUrPk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleUrPk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUrPk extends LocaleUr -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUz.php b/vendor/fisharebest/localization/src/Locale/LocaleUz.php deleted file mode 100644 index a27df098b8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUz.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageUz; - -/** - * Class LocaleUz - Uzbek - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUz extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'o‘zbek'; - } - - public function endonymSortable() - { - return 'OZBEK'; - } - - public function language() - { - return new LanguageUz(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUzArab.php b/vendor/fisharebest/localization/src/Locale/LocaleUzArab.php deleted file mode 100644 index b6cc5da573..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUzArab.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptArab; - -/** - * Class LocaleUzArab - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUzArab extends LocaleUz -{ - public function script() - { - return new ScriptArab(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::HYPHEN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUzArabAf.php b/vendor/fisharebest/localization/src/Locale/LocaleUzArabAf.php deleted file mode 100644 index 651b6e2633..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUzArabAf.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryAf; - -/** - * Class LocaleUzArabAf - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUzArabAf extends LocaleUzArab -{ - public function territory() - { - return new TerritoryAf(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUzCyrl.php b/vendor/fisharebest/localization/src/Locale/LocaleUzCyrl.php deleted file mode 100644 index 4d5da6bdd1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUzCyrl.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptCyrl; - -/** - * Class LocaleUzCyrl - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUzCyrl extends LocaleUz -{ - public function script() - { - return new ScriptCyrl(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUzCyrlUz.php b/vendor/fisharebest/localization/src/Locale/LocaleUzCyrlUz.php deleted file mode 100644 index 96d1dec96d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUzCyrlUz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleUzCyrlUz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUzCyrlUz extends LocaleUzCyrl -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUzLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleUzLatn.php deleted file mode 100644 index 7c46234ae5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUzLatn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleUzLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUzLatn extends LocaleUz -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleUzLatnUz.php b/vendor/fisharebest/localization/src/Locale/LocaleUzLatnUz.php deleted file mode 100644 index ededfd92fb..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleUzLatnUz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleUzLatnUz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleUzLatnUz extends LocaleUzLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVai.php b/vendor/fisharebest/localization/src/Locale/LocaleVai.php deleted file mode 100644 index b6cebcea16..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVai.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageVai; - -/** - * Class LocaleVai - Vai - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVai extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ꕙꔤ'; - } - - public function language() - { - return new LanguageVai(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVaiLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleVaiLatn.php deleted file mode 100644 index 1879fd68d6..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVaiLatn.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptLatn; - -/** - * Class LocaleVaiLatn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVaiLatn extends LocaleVai -{ - public function script() - { - return new ScriptLatn(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVaiLatnLr.php b/vendor/fisharebest/localization/src/Locale/LocaleVaiLatnLr.php deleted file mode 100644 index c5d4e2ba4e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVaiLatnLr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleVaiLatnLr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVaiLatnLr extends LocaleVaiLatn -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVaiVaii.php b/vendor/fisharebest/localization/src/Locale/LocaleVaiVaii.php deleted file mode 100644 index 84ff8c9c4e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVaiVaii.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleVaiVaii - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVaiVaii extends LocaleVai -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVaiVaiiLr.php b/vendor/fisharebest/localization/src/Locale/LocaleVaiVaiiLr.php deleted file mode 100644 index 9c1dd4d43b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVaiVaiiLr.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleVaiVaiiLr - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVaiVaiiLr extends LocaleVaiVaii -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVe.php b/vendor/fisharebest/localization/src/Locale/LocaleVe.php deleted file mode 100644 index b188af92d4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVe.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageVe; - -/** - * Class LocaleVe - Venda - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVe extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Tshivenḓa'; - } - - public function endonymSortable() - { - return 'TSHIVENDA'; - } - - public function language() - { - return new LanguageVe(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVeZa.php b/vendor/fisharebest/localization/src/Locale/LocaleVeZa.php deleted file mode 100644 index f5bb41509e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVeZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleVeZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVeZa extends LocaleVe -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVi.php b/vendor/fisharebest/localization/src/Locale/LocaleVi.php deleted file mode 100644 index ab956cf260..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVi.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageVi; - -/** - * Class LocaleVi - Vietnamese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVi extends AbstractLocale implements LocaleInterface -{ - public function collation() - { - return 'vietnamese_ci'; - } - - public function endonym() - { - return 'Tiếng Việt'; - } - - public function endonymSortable() - { - return 'TIENG VIET'; - } - - public function language() - { - return new LanguageVi(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::DOT, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleViVn.php b/vendor/fisharebest/localization/src/Locale/LocaleViVn.php deleted file mode 100644 index f3a22aa366..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleViVn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleViVn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleViVn extends LocaleVi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVo.php b/vendor/fisharebest/localization/src/Locale/LocaleVo.php deleted file mode 100644 index 36abb5d4d1..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageVo; - -/** - * Class LocaleVo - Volapük - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Volapük'; - } - - public function endonymSortable() - { - return 'VOLAPUK'; - } - - public function language() - { - return new LanguageVo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVo001.php b/vendor/fisharebest/localization/src/Locale/LocaleVo001.php deleted file mode 100644 index bef05ca20f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVo001.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleVo001 - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVo001 extends LocaleVo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVun.php b/vendor/fisharebest/localization/src/Locale/LocaleVun.php deleted file mode 100644 index daf92c0f2b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVun.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageVun; - -/** - * Class LocaleVun - Vunjo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVun extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Kyivunjo'; - } - - public function endonymSortable() - { - return 'KYIVUNJO'; - } - - public function language() - { - return new LanguageVun(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleVunTz.php b/vendor/fisharebest/localization/src/Locale/LocaleVunTz.php deleted file mode 100644 index 8de920e5f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleVunTz.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleVunTz - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleVunTz extends LocaleVun -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleWa.php b/vendor/fisharebest/localization/src/Locale/LocaleWa.php deleted file mode 100644 index bf66c54943..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleWa.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageWa; - -/** - * Class LocaleWa - Walloon - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleWa extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Walon'; - } - - public function endonymSortable() - { - return 'WALON'; - } - - public function language() - { - return new LanguageWa(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleWaBe.php b/vendor/fisharebest/localization/src/Locale/LocaleWaBe.php deleted file mode 100644 index cfb674fe13..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleWaBe.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleWaBe - Walloon - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleWaBe extends LocaleWa -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleWae.php b/vendor/fisharebest/localization/src/Locale/LocaleWae.php deleted file mode 100644 index 431cfad8be..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleWae.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageWae; - -/** - * Class LocaleWae - Walser - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleWae extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Walser'; - } - - public function endonymSortable() - { - return 'WALSER'; - } - - public function language() - { - return new LanguageWae(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::APOSTROPHE, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleWaeCh.php b/vendor/fisharebest/localization/src/Locale/LocaleWaeCh.php deleted file mode 100644 index a2d4b2400c..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleWaeCh.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleWaeCh - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleWaeCh extends LocaleWae -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleWo.php b/vendor/fisharebest/localization/src/Locale/LocaleWo.php deleted file mode 100644 index e7b48cea5b..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleWo.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageWo; - -/** - * Class LocaleWo - Wo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleWo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Wolof'; - } - - public function endonymSortable() - { - return 'WOLOF'; - } - - public function language() - { - return new LanguageWo(); - } - - public function numberSymbols() - { - return array( - self::DECIMAL => self::COMMA, - self::GROUP => self::DOT, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleWoSn.php b/vendor/fisharebest/localization/src/Locale/LocaleWoSn.php deleted file mode 100644 index 59bedd05f3..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleWoSn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleWoSn - Wolof - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleWoSn extends LocaleWo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleXh.php b/vendor/fisharebest/localization/src/Locale/LocaleXh.php deleted file mode 100644 index a5c45acd64..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleXh.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageXh; - -/** - * Class LocaleXh - Xhosa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleXh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'isiXhosa'; - } - - public function endonymSortable() - { - return 'XHOSA'; - } - - public function language() - { - return new LanguageXh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleXhZa.php b/vendor/fisharebest/localization/src/Locale/LocaleXhZa.php deleted file mode 100644 index 7c2ec3f60e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleXhZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleXhZa - Xhosa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleXhZa extends LocaleXh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleXog.php b/vendor/fisharebest/localization/src/Locale/LocaleXog.php deleted file mode 100644 index 9bb7771b20..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleXog.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageXog; - -/** - * Class LocaleXog - Soga - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleXog extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Olusoga'; - } - - public function endonymSortable() - { - return 'OLUSOGA'; - } - - public function language() - { - return new LanguageXog(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleXogUg.php b/vendor/fisharebest/localization/src/Locale/LocaleXogUg.php deleted file mode 100644 index 5126092560..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleXogUg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleXogUg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleXogUg extends LocaleXog -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYav.php b/vendor/fisharebest/localization/src/Locale/LocaleYav.php deleted file mode 100644 index f96c062208..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYav.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageYav; - -/** - * Class LocaleYav - Yangben - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYav extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'nuasue'; - } - - public function endonymSortable() - { - return 'NUASUE'; - } - - public function language() - { - return new LanguageYav(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYavCm.php b/vendor/fisharebest/localization/src/Locale/LocaleYavCm.php deleted file mode 100644 index f4cf8d0e2a..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYavCm.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleYavCm - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYavCm extends LocaleYav -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYi.php b/vendor/fisharebest/localization/src/Locale/LocaleYi.php deleted file mode 100644 index f5100067a4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYi.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageYi; - -/** - * Class LocaleYi - Yiddish - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYi extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ייִדיש'; - } - - public function language() - { - return new LanguageYi(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYi001.php b/vendor/fisharebest/localization/src/Locale/LocaleYi001.php deleted file mode 100644 index 1df24f27bd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYi001.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleYi001 - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYi001 extends LocaleYi -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYo.php b/vendor/fisharebest/localization/src/Locale/LocaleYo.php deleted file mode 100644 index 6465733ac8..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYo.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageYo; - -/** - * Class LocaleYo - Yoruba - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYo extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'Èdè Yorùbá'; - } - - public function endonymSortable() - { - return 'EDE YORUBA'; - } - - public function language() - { - return new LanguageYo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYoBj.php b/vendor/fisharebest/localization/src/Locale/LocaleYoBj.php deleted file mode 100644 index b5d1cc13f9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYoBj.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryBj; - -/** - * Class LocaleYoBj - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYoBj extends LocaleYo -{ - public function territory() - { - return new TerritoryBj(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYoNg.php b/vendor/fisharebest/localization/src/Locale/LocaleYoNg.php deleted file mode 100644 index d728778cab..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYoNg.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleYoNg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYoNg extends LocaleYo -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYue.php b/vendor/fisharebest/localization/src/Locale/LocaleYue.php deleted file mode 100644 index 6fa12bba3f..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYue.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageYue; - -/** - * Class LocaleZh - Chinese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYue extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return '粵語'; - } - - public function language() - { - return new LanguageYue(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYueHans.php b/vendor/fisharebest/localization/src/Locale/LocaleYueHans.php deleted file mode 100644 index a161b98e09..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYueHans.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleYueHans - Yue - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYueHans extends LocaleYue -{ - public function endonym() - { - return '粤语'; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYueHansCn.php b/vendor/fisharebest/localization/src/Locale/LocaleYueHansCn.php deleted file mode 100644 index bbe4f6a43d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYueHansCn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleYueHansCn - Yue - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYueHansCn extends LocaleYueHans -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYueHant.php b/vendor/fisharebest/localization/src/Locale/LocaleYueHant.php deleted file mode 100644 index b091a68cfc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYueHant.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptHant; - -/** - * Class LocaleYueHant - Yue - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYueHant extends LocaleYue -{ - public function endonym() - { - return '粤语'; - } - - public function script() - { - return new ScriptHant(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYueHantHk.php b/vendor/fisharebest/localization/src/Locale/LocaleYueHantHk.php deleted file mode 100644 index 0526d398c5..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYueHantHk.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleYueHantHk - Yue - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYueHantHk extends LocaleYueHant -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleYueHk.php b/vendor/fisharebest/localization/src/Locale/LocaleYueHk.php deleted file mode 100644 index 58d78c0b03..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleYueHk.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageYue; -use Fisharebest\Localization\Territory\TerritoryHk; - -/** - * Class LocaleYueHk - Chinese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleYueHk extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return '粵語'; - } - - public function language() - { - return new LanguageYue(); - } - - public function territory() - { - return new TerritoryHk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZgh.php b/vendor/fisharebest/localization/src/Locale/LocaleZgh.php deleted file mode 100644 index ba08d8cc05..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZgh.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageZgh; - -/** - * Class LocaleZgh - Standard Moroccan Tamazight - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZgh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'ⵜⴰⵎⴰⵣⵉⵖⵜ'; - } - - public function language() - { - return new LanguageZgh(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::NBSP, - self::DECIMAL => self::COMMA, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::NBSP . self::PERCENT; - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZghMa.php b/vendor/fisharebest/localization/src/Locale/LocaleZghMa.php deleted file mode 100644 index bd2fb2d2fd..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZghMa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleZghMa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZghMa extends LocaleZgh -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZh.php b/vendor/fisharebest/localization/src/Locale/LocaleZh.php deleted file mode 100644 index 7bce2060a9..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZh.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageZh; - -/** - * Class LocaleZh - Chinese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZh extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return '中文'; - } - - public function language() - { - return new LanguageZh(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHans.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHans.php deleted file mode 100644 index 41c24d48bc..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHans.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleZhHans - Simplified Chinese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHans extends LocaleZh -{ - public function endonym() - { - if (get_class($this) === __NAMESPACE__ . '\LocaleZhHans') { - // If the Hans script has been specified (but no other tags), then it is customary to include it. - return '简体中文'; - } - - return parent::endonym(); - } - - public function languageTag() - { - if (get_class($this) === __NAMESPACE__ . '\LocaleZhHans') { - // If the Hans script has been specified (but no other tags), then it is customary to include it. - return 'zh-Hans'; - } - - return parent::languageTag(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHansCn.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHansCn.php deleted file mode 100644 index be16712dec..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHansCn.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleZhHansCn - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHansCn extends LocaleZhHans -{ -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHansHk.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHansHk.php deleted file mode 100644 index 9ed04db366..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHansHk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryHk; - -/** - * Class LocaleZhHansHk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHansHk extends LocaleZhHans -{ - public function territory() - { - return new TerritoryHk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHansMo.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHansMo.php deleted file mode 100644 index c1b2c12fef..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHansMo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMo; - -/** - * Class LocaleZhHansMo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHansMo extends LocaleZhHans -{ - public function territory() - { - return new TerritoryMo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHansSg.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHansSg.php deleted file mode 100644 index 57e4577a21..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHansSg.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritorySg; - -/** - * Class LocaleZhHansSg - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHansSg extends LocaleZhHans -{ - public function territory() - { - return new TerritorySg(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHant.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHant.php deleted file mode 100644 index 6c148d7ee4..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHant.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Script\ScriptHant; - -/** - * Class LocaleZhHant - Traditional Chinese - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHant extends LocaleZh -{ - public function endonym() - { - return '繁體中文'; - } - - protected function minimumGroupingDigits() - { - return 3; - } - - public function script() - { - return new ScriptHant(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHantHk.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHantHk.php deleted file mode 100644 index 2cbc709311..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHantHk.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryHk; - -/** - * Class LocaleZhHantHk - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHantHk extends LocaleZhHant -{ - public function territory() - { - return new TerritoryHk(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHantMo.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHantMo.php deleted file mode 100644 index fb143b517e..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHantMo.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryMo; - -/** - * Class LocaleZhHantMo - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHantMo extends LocaleZhHant -{ - public function territory() - { - return new TerritoryMo(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZhHantTw.php b/vendor/fisharebest/localization/src/Locale/LocaleZhHantTw.php deleted file mode 100644 index 3e6fcafa00..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZhHantTw.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Territory\TerritoryTw; - -/** - * Class LocaleZhHantTw - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZhHantTw extends LocaleZhHant -{ - public function territory() - { - return new TerritoryTw(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZu.php b/vendor/fisharebest/localization/src/Locale/LocaleZu.php deleted file mode 100644 index 6470b9240d..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZu.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageZu; - -/** - * Class LocaleZu - Zulu - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZu extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'isiZulu'; - } - - public function endonymSortable() - { - return 'ISIZULU'; - } - - public function language() - { - return new LanguageZu(); - } -} diff --git a/vendor/fisharebest/localization/src/Locale/LocaleZuZa.php b/vendor/fisharebest/localization/src/Locale/LocaleZuZa.php deleted file mode 100644 index 67169f1995..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleZuZa.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -/** - * Class LocaleZuZa - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleZuZa extends LocaleZu -{ -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule0.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule0.php deleted file mode 100644 index 05bc863a5f..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule0.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule0 - Select a plural form for a specified number. - * Families: - * Asian (Chinese, Japanese, Korean, Vietnamese), - * Persian, - * Turkic/Altaic (Turkish), - * Thai, - * Lao - * nplurals=1; plural=0; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule0 implements PluralRuleInterface -{ - public function plurals() - { - return 1; - } - - public function plural($number) - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule1.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule1.php deleted file mode 100644 index 41bb53fe3a..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule1.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule1 - Select a plural form for a specified number. - * Families: - * Germanic (Danish, Dutch, English, Faroese, Frisian, German, Norwegian, Swedish) - * Finno-Ugric (Estonian, Finnish, Hungarian) - * AbstractLanguage isolate (Basque) - * Latin/Greek (Greek) - * Semitic (Hebrew) - * Romanic (Italian, Portuguese, Spanish, Catalan) - * nplurals=2; plural=(n != 1); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule1 implements PluralRuleInterface -{ - public function plurals() - { - return 2; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - return 1; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule10.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule10.php deleted file mode 100644 index 7ab44a0444..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule10.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule10 - Select a plural form for a specified number. - * Families: - * Slavic (Slovenian, Sorbian) - * nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule10 implements PluralRuleInterface -{ - public function plurals() - { - return 4; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 100 === 1) { - return 0; - } - - if ($number % 100 === 2) { - return 1; - } - - if ($number % 100 === 3 || $number % 100 === 4) { - return 2; - } - - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule11.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule11.php deleted file mode 100644 index 4be418ae6e..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule11.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule11 - Select a plural form for a specified number. - * Families: - * Celtic (Irish Gaelic) - * nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(n>6 && n<11) ? 3 : 4; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule11 implements PluralRuleInterface -{ - public function plurals() - { - return 5; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number === 2) { - return 1; - } - - if ($number > 2 && $number < 7) { - return 2; - } - - if ($number > 6 && $number < 11) { - return 3; - } - - return 4; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule12.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule12.php deleted file mode 100644 index 199a181b37..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule12.php +++ /dev/null @@ -1,48 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule12 - Select a plural form for a specified number. - * Families: - * Semitic (Arabic) - * nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule12 implements PluralRuleInterface -{ - public function plurals() - { - return 6; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 0) { - return 0; - } - - if ($number === 1) { - return 1; - } - - if ($number === 2) { - return 2; - } - - if ($number % 100 >= 3 && $number % 100 <= 10) { - return 3; - } - - if ($number % 100 >= 11) { - return 4; - } - - return 5; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule13.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule13.php deleted file mode 100644 index ca0efaca18..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule13.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule13 - Select a plural form for a specified number. - * Families: - * Semitic (Maltese) - * nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule13 implements PluralRuleInterface -{ - public function plurals() - { - return 4; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number === 0 || ($number % 100 > 1 && $number % 100 < 11)) { - return 1; - } - - if ($number % 100 > 10 && $number % 100 < 20) { - return 2; - } - - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule14.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule14.php deleted file mode 100644 index 70901ebd64..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule14.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule14 - Select a plural form for a specified number. - * Families: - * Slavic (Macedonian) - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule14 implements PluralRuleInterface -{ - public function plurals() - { - return 2; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 === 1 && $number % 100 !== 11) { - return 0; - } - - return 1; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule15.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule15.php deleted file mode 100644 index 7e6acba550..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule15.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule15 - Select a plural form for a specified number. - * Families: - * Icelandic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule15 implements PluralRuleInterface -{ - public function plurals() - { - return 2; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 !== 1 || $number % 100 === 11) { - return 1; - } - - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule16.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule16.php deleted file mode 100644 index 65885bbe9c..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule16.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule16 - Select a plural form for a specified number. - * Families: - * Celtic (Breton) - * nplurals=2; plural=(n > 1); - * is 1: 1 - * ends in 1, excluding 1, 11, 71, 91: 21, 31, 41, 51, 61, 81, 101, 121, 131, 141, 151, 161, 181, 201, 221, 231, 241, 251, 261, 281, ... - * ends in 2, excluding 12, 72, 92: 2, 22, 32, 42, 52, 62, 82, 102, 122, 132, 142, 152, 162, 182, 202, 222, 232, 242, 252, 262, 282, ... - * ends in 3, 4 or 9 excluding 13, 14, 19, 73, 74, 79, 93, 94, 99: 3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 53, 54, 59, ... - * ends in 1000000: 1000000: 1000000, 2000000, 3000000, 4000000, 5000000, 6000000, 7000000, 8000000, 9000000, 10000000, ... - * everything else: 0, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 26, 27, 28, 30, 35, 36, 37, 38, 40, ... - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule16 implements PluralRuleInterface -{ - public function plurals() - { - return 5; - } - - public function plural($number) - { - $number = abs($number); - - if ($number > 1) { - return 1; - } - - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule2.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule2.php deleted file mode 100644 index dd12fa58de..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule2.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule2 - Select a plural form for a specified number. - * Families: - * Romanic (French, Brazilian Portuguese) - * nplurals=2; plural=(n > 1); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule2 implements PluralRuleInterface -{ - public function plurals() - { - return 2; - } - - public function plural($number) - { - $number = abs($number); - - if ($number > 1) { - return 1; - } - - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule3.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule3.php deleted file mode 100644 index 8a7be239c2..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule3.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule3 - Select a plural form for a specified number. - * Families: - * Baltic (Latvian) - * nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule3 implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 === 1 && $number % 100 !== 11) { - return 0; - } - - if ($number !== 0) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule4.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule4.php deleted file mode 100644 index 4c8f33aa1d..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule4.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule4 - Select a plural form for a specified number. - * Families: - * Celtic (Scottish Gaelic) - * nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule4 implements PluralRuleInterface -{ - public function plurals() - { - return 4; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1 || $number === 11) { - return 0; - } - - if ($number === 2 || $number === 12) { - return 1; - } - - if ($number > 2 && $number < 20) { - return 2; - } - - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule5.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule5.php deleted file mode 100644 index b581b33017..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule5.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule5 - Select a plural form for a specified number. - * Families: - * Romanic (Romanian) - * nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule5 implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number === 0 || ($number % 100 > 0 && $number % 100 < 20)) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule6.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule6.php deleted file mode 100644 index de78e7de5d..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule6.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule6 - Select a plural form for a specified number. - * Families: - * Baltic (Lithuanian) - * nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule6 implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 === 1 && $number % 100 !== 11) { - return 0; - } - - if ($number % 10 >= 2 && ($number % 100 < 10 || $number % 100 >= 20)) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule7.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule7.php deleted file mode 100644 index 577e5e2e9d..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule7.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule7 - Select a plural form for a specified number. - * Families: - * Slavic (Belarusian, Bosnian, Croatian, Serbian, Russian, Ukrainian) - * nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule7 implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 === 1 && $number % 100 !== 11) { - return 0; - } - - if ($number % 10 >= 2 && $number % 10 <= 4 && ($number % 100 < 10 || $number % 100 >= 20)) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule8.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule8.php deleted file mode 100644 index d2a4c8ed32..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule8.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule8 - Select a plural form for a specified number. - * Families: - * Slavic (Slovak, Czech) - * nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule8 implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number >= 2 && $number <= 4) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRule9.php b/vendor/fisharebest/localization/src/PluralRule/PluralRule9.php deleted file mode 100644 index ba6491119f..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRule9.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRule9 - Select a plural form for a specified number. - * Families: - * Slavic (Polish) - * nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRule9 implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number % 10 >= 2 && $number % 10 <= 4 && ($number % 100 < 10 || $number % 100 >= 20)) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleCentralAtlasTamazight.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleCentralAtlasTamazight.php deleted file mode 100644 index 94f4cec35b..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleCentralAtlasTamazight.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleCentralAtlasTamazight - Select a plural form for a specified number. - * nplurals=4; plural=(n>=2 && n<=10 || n>99) ? 1 : 0 - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleCentralAtlasTamazight implements PluralRuleInterface -{ - public function plurals() - { - return 2; - } - - public function plural($number) - { - $number = abs($number); - - if ($number >= 2 && $number <= 10 || $number > 99) { - return 1; - } - - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleCornish.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleCornish.php deleted file mode 100644 index 9fcda530bf..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleCornish.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleWelsh - Select a plural form for a specified number. - * nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleCornish implements PluralRuleInterface -{ - public function plurals() - { - return 4; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number === 2) { - return 1; - } - - if ($number === 3) { - return 2; - } - - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleInterface.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleInterface.php deleted file mode 100644 index ee1c4541f1..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleInterface.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Interface PluralRuleInterface - Select a plural form for a specified number. - * - * @link https://developer.mozilla.org/en-US/docs/Mozilla/Localization/Localization_and_Plurals - * @link http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -interface PluralRuleInterface -{ - /** - * How many plural forms exist. - * - * @return int - */ - public function plurals(); - - /** - * Which plural form to use for a specified number. - * - * @param int $number - * - * @return int - */ - public function plural($number); -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleManx.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleManx.php deleted file mode 100644 index a06e145915..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleManx.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleManx - Select a plural form for a specified number. - * nplurals=4; plural=(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 20 == 0) ? 2 : 3)); - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleManx implements PluralRuleInterface -{ - public function plurals() - { - return 4; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 === 1) { - return 0; - } - - if ($number % 10 === 2) { - return 1; - } - - if ($number % 20 === 0) { - return 2; - } - - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleOneTwoOther.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleOneTwoOther.php deleted file mode 100644 index 3614c7ed51..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleOneTwoOther.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleOneTwoOther - Select a plural form for a specified number. - * nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : 2; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleOneTwoOther implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number === 2) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleTachelhit.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleTachelhit.php deleted file mode 100644 index 45e0e84cb3..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleTachelhit.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleTachelhit - Select a plural form for a specified number. - * nplurals=4; plural=(n==0 || n==1) ? 0 : (n>=2 && n<=10) ? 1 : 2; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleTachelhit implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 0 || $number === 1) { - return 0; - } - - if ($number >= 2 && $number <= 10) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleTagalog.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleTagalog.php deleted file mode 100644 index 89f192680e..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleTagalog.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleTagalog - Select a plural form for a specified number. - * nplurals=2; plural=n % 10 != 4 && n%10 != 6 && n%10 != 9; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleTagalog implements PluralRuleInterface -{ - public function plurals() - { - return 2; - } - - public function plural($number) - { - $number = abs($number); - - if ($number % 10 === 4 || $number % 10 === 6 || $number % 10 === 9) { - return 1; - } - - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleUnknown.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleUnknown.php deleted file mode 100644 index b7ea4b08dc..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleUnknown.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -use DomainException; - -/** - * Class PluralRuleUnknown - used by languages for which the plural rules are not known. - * - * We cannot use this language for translation, but we can use its other attributes. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleUnknown implements PluralRuleInterface -{ - public function plurals() - { - throw new DomainException('No plural rule defined for this language'); - } - - public function plural($number) - { - throw new DomainException('No plural rule defined for this language'); - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleWelsh.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleWelsh.php deleted file mode 100644 index 103ca6f462..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleWelsh.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleWelsh - Select a plural form for a specified number. - * nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleWelsh implements PluralRuleInterface -{ - public function plurals() - { - return 4; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 1) { - return 0; - } - - if ($number === 2) { - return 1; - } - - if ($number !== 8 && $number !== 11) { - return 2; - } - - return 3; - } -} diff --git a/vendor/fisharebest/localization/src/PluralRule/PluralRuleZeroOneOther.php b/vendor/fisharebest/localization/src/PluralRule/PluralRuleZeroOneOther.php deleted file mode 100644 index 05c2ca04c0..0000000000 --- a/vendor/fisharebest/localization/src/PluralRule/PluralRuleZeroOneOther.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Fisharebest\Localization\PluralRule; - -/** - * Class PluralRuleZeroOneOther - Select a plural form for a specified number. - * nplurals=4; plural=(n==0) ? 0 : (n==1) ? 1 : 2; - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class PluralRuleZeroOneOther implements PluralRuleInterface -{ - public function plurals() - { - return 3; - } - - public function plural($number) - { - $number = abs($number); - - if ($number === 0) { - return 0; - } - - if ($number === 1) { - return 1; - } - - return 2; - } -} diff --git a/vendor/fisharebest/localization/src/Script/AbstractScript.php b/vendor/fisharebest/localization/src/Script/AbstractScript.php deleted file mode 100644 index 487ba1aeec..0000000000 --- a/vendor/fisharebest/localization/src/Script/AbstractScript.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class AbstractScript - Representation of a writing system. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -abstract class AbstractScript -{ - /** - * What are the default digits used by this script? - * This is an array of translations from Hindu-Arabic (0123456789) - * symbols to other symbols. For English, etc., this array is empty. - * Some locales (e.g. Persian) use their own digits, rather than - * the default digits of their script. - * - * @return string[] - */ - public function numerals() - { - return array(); - } - - /** - * Is the script written left-to-right “ltr” or right-to-left “rtl”. - * - * @return string “ltr” or “rtl” - */ - public function direction() - { - return substr_compare($this->number(), '1', 0, 1) ? 'ltr' : 'rtl'; - } - - /** - * The ISO15924 number for this script. - * - * @return string - */ - abstract public function number(); - - /** - * The Unicode name (aka “property value alias”) for this script, or - * null if one does not exist. - * - * @return string|null - */ - public function unicodeName() - { - return null; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptAdlm.php b/vendor/fisharebest/localization/src/Script/ScriptAdlm.php deleted file mode 100644 index cb523c3133..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptAdlm.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptAdlm - Representation of the Adlam script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptAdlm extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Adlm'; - } - - public function number() - { - return '166'; - } - - public function unicodeName() - { - return 'Adlam'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptAfak.php b/vendor/fisharebest/localization/src/Script/ScriptAfak.php deleted file mode 100644 index 52283faff7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptAfak.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptAraf - Representation of the Afaka script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptAfak extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Afak'; - } - - public function number() - { - return '439'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptAghb.php b/vendor/fisharebest/localization/src/Script/ScriptAghb.php deleted file mode 100644 index e64dfc63cb..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptAghb.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptAghb - Representation of the Caucasian Albanian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptAghb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Aghb'; - } - - public function number() - { - return '239'; - } - - public function unicodeName() - { - return 'Caucasian_Albanian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptAhom.php b/vendor/fisharebest/localization/src/Script/ScriptAhom.php deleted file mode 100644 index 746b638be9..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptAhom.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptAhom - Representation of the Ahom script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptAhom extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Ahom'; - } - - public function number() - { - return '338'; - } - - public function unicodeName() - { - return 'Ahom'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptArab.php b/vendor/fisharebest/localization/src/Script/ScriptArab.php deleted file mode 100644 index 7c46474368..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptArab.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptArab - Representation of the Arabic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptArab extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Arab'; - } - - public function numerals() - { - return array('٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩'); - } - - public function number() - { - return '160'; - } - - public function unicodeName() - { - return 'Arabic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptAran.php b/vendor/fisharebest/localization/src/Script/ScriptAran.php deleted file mode 100644 index 0a26a7ec24..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptAran.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptAran - Representation of the Arabic (Nastaliq) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptAran extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Aran'; - } - - public function number() - { - return '161'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptArmi.php b/vendor/fisharebest/localization/src/Script/ScriptArmi.php deleted file mode 100644 index 0ef0ca7a98..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptArmi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptArmi - Representation of the Imperial Aramaic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptArmi extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Armi'; - } - - public function number() - { - return '124'; - } - - public function unicodeName() - { - return 'Imperial_Aramaic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptArmn.php b/vendor/fisharebest/localization/src/Script/ScriptArmn.php deleted file mode 100644 index 2928274cde..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptArmn.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptArmn - Representation of the Armenian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptArmn extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Armn'; - } - - public function number() - { - return '230'; - } - - public function unicodeName() - { - return 'Armenian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptAvst.php b/vendor/fisharebest/localization/src/Script/ScriptAvst.php deleted file mode 100644 index e8871c32f2..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptAvst.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptAvst - Representation of the Avestan script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptAvst extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Avst'; - } - - public function number() - { - return '134'; - } - - public function unicodeName() - { - return 'Avestan'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBali.php b/vendor/fisharebest/localization/src/Script/ScriptBali.php deleted file mode 100644 index fa06c5c422..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBali.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBali - Representation of the Balinese script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBali extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Bali'; - } - - public function numerals() - { - return array('᭐', '᭑', '᭒', '᭓', '᭔', '᭕', '᭖', '᭗', '᭘', '᭙'); - } - - public function number() - { - return '360'; - } - - public function unicodeName() - { - return 'Balinese'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBamu.php b/vendor/fisharebest/localization/src/Script/ScriptBamu.php deleted file mode 100644 index 521de35c9c..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBamu.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBamu - Representation of the Bamum script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBamu extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Bamu'; - } - - public function number() - { - return '435'; - } - - public function unicodeName() - { - return 'Bamum'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBass.php b/vendor/fisharebest/localization/src/Script/ScriptBass.php deleted file mode 100644 index 1f4e18223a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBass.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBass - Representation of the Bassa Vah script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBass extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Bass'; - } - - public function number() - { - return '259'; - } - - public function unicodeName() - { - return 'Bassa_Vah'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBatk.php b/vendor/fisharebest/localization/src/Script/ScriptBatk.php deleted file mode 100644 index 7416c65f36..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBatk.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBatk - Representation of the Batak script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBatk extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Batk'; - } - - public function number() - { - return '365'; - } - - public function unicodeName() - { - return 'Batak'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBeng.php b/vendor/fisharebest/localization/src/Script/ScriptBeng.php deleted file mode 100644 index ce8c88f71d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBeng.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBeng - Representation of the Bengali script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBeng extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Beng'; - } - - public function numerals() - { - return array('০', '১', '২', '৩', '৪', '৫', '৬', '৭', '৮', '৯'); - } - - public function number() - { - return '325'; - } - - public function unicodeName() - { - return 'Bengali'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBhks.php b/vendor/fisharebest/localization/src/Script/ScriptBhks.php deleted file mode 100644 index 7547a54809..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBhks.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBhks - Representation of the Bhaiksuki script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBhks extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Bhks'; - } - - public function number() - { - return '334'; - } - - public function unicodeName() - { - return 'Bhaiksuki'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBlis.php b/vendor/fisharebest/localization/src/Script/ScriptBlis.php deleted file mode 100644 index 70c8559700..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBlis.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBlis - Representation of the Blissymbols script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBlis extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Blis'; - } - - public function number() - { - return '550'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBopo.php b/vendor/fisharebest/localization/src/Script/ScriptBopo.php deleted file mode 100644 index a34b058096..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBopo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBopo - Representation of the Bopomofo script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBopo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Bopo'; - } - - public function number() - { - return '285'; - } - - public function unicodeName() - { - return 'Bopomofo'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBrah.php b/vendor/fisharebest/localization/src/Script/ScriptBrah.php deleted file mode 100644 index 3ff34ff552..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBrah.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBrah - Representation of the Brahmi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBrah extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Brah'; - } - - public function numerals() - { - return array('𑁦', '𑁧', '𑁨', '𑁩', '𑁪', '𑁫', '𑁬', '𑁭', '𑁮', '𑁯'); - } - - public function number() - { - return '300'; - } - - public function unicodeName() - { - return 'Brahmi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBrai.php b/vendor/fisharebest/localization/src/Script/ScriptBrai.php deleted file mode 100644 index c6f4b49765..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBrai.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBrai - Representation of the Braille script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBrai extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Brai'; - } - - public function number() - { - return '570'; - } - - public function unicodeName() - { - return 'Braille'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBugi.php b/vendor/fisharebest/localization/src/Script/ScriptBugi.php deleted file mode 100644 index 59bdb76877..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBugi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBugi - Representation of the Buginese script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBugi extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Bugi'; - } - - public function number() - { - return '367'; - } - - public function unicodeName() - { - return 'Buginese'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptBuhd.php b/vendor/fisharebest/localization/src/Script/ScriptBuhd.php deleted file mode 100644 index b272537311..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptBuhd.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptBuhd - Representation of the Buhid script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptBuhd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Buhd'; - } - - public function number() - { - return '372'; - } - - public function unicodeName() - { - return 'Buhid'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCakm.php b/vendor/fisharebest/localization/src/Script/ScriptCakm.php deleted file mode 100644 index 881ee40d96..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCakm.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCakm - Representation of the Chakma script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCakm extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cakm'; - } - - public function numerals() - { - return array('𑄶', '𑄷', '𑄸', '𑄹', '𑄺', '𑄻', '𑄼', '𑄽', '𑄾', '𑄿'); - } - - public function number() - { - return '349'; - } - - public function unicodeName() - { - return 'Chakma'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCans.php b/vendor/fisharebest/localization/src/Script/ScriptCans.php deleted file mode 100644 index a4beff44fd..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCans.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCans - Representation of the Unified Canadian Aboriginal Syllabics script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCans extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cans'; - } - - public function number() - { - return '440'; - } - - public function unicodeName() - { - return 'Canadian_Aboriginal'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCari.php b/vendor/fisharebest/localization/src/Script/ScriptCari.php deleted file mode 100644 index 3a38d748ca..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCari.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCari - Representation of the Carian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCari extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cari'; - } - - public function number() - { - return '201'; - } - - public function unicodeName() - { - return 'Carian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCham.php b/vendor/fisharebest/localization/src/Script/ScriptCham.php deleted file mode 100644 index 2e5540aa86..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCham.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCham - Representation of the Cham script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCham extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cham'; - } - - public function numerals() - { - return array('꩐', '꩑', '꩒', '꩓', '꩔', '꩕', '꩖', '꩗', '꩘', '꩙'); - } - - public function number() - { - return '358'; - } - - public function unicodeName() - { - return 'Cham'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCher.php b/vendor/fisharebest/localization/src/Script/ScriptCher.php deleted file mode 100644 index b020354322..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCher.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCher - Representation of the Cherokee script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCher extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cher'; - } - - public function number() - { - return '445'; - } - - public function unicodeName() - { - return 'Cherokee'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCirt.php b/vendor/fisharebest/localization/src/Script/ScriptCirt.php deleted file mode 100644 index afcf909d1b..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCirt.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCirt - Representation of the Cirth script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCirt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cirt'; - } - - public function number() - { - return '291'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCopt.php b/vendor/fisharebest/localization/src/Script/ScriptCopt.php deleted file mode 100644 index 113da95258..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCopt.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCopt - Representation of the Coptic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCopt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Copt'; - } - - public function number() - { - return '204'; - } - - public function unicodeName() - { - return 'Coptic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCpmn.php b/vendor/fisharebest/localization/src/Script/ScriptCpmn.php deleted file mode 100644 index ab6dfa459a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCpmn.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Cypro-Minoan script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCpmn extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cpmn'; - } - - public function number() - { - return '402'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCprt.php b/vendor/fisharebest/localization/src/Script/ScriptCprt.php deleted file mode 100644 index 2f79535ea8..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCprt.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCprt - Representation of the Cypriot script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCprt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cprt'; - } - - public function number() - { - return '403'; - } - - public function unicodeName() - { - return 'Cypriot'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCyrl.php b/vendor/fisharebest/localization/src/Script/ScriptCyrl.php deleted file mode 100644 index c73fb808f0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCyrl.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCyrl - Representation of the Cyrillic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCyrl extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cyrl'; - } - - public function number() - { - return '220'; - } - - public function unicodeName() - { - return 'Cyrillic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptCyrs.php b/vendor/fisharebest/localization/src/Script/ScriptCyrs.php deleted file mode 100644 index e7ba4f36d9..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptCyrs.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCyrs - Representation of the Cyrillic (Old Church Slavonic variant) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptCyrs extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Cyrs'; - } - - public function number() - { - return '221'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptDeva.php b/vendor/fisharebest/localization/src/Script/ScriptDeva.php deleted file mode 100644 index 1c392027c3..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptDeva.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptDeva - Representation of the Devanagari script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptDeva extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Deva'; - } - - public function numerals() - { - return array('०', '१', '२', '३', '४', '५', '६', '७', '८', '९'); - } - - public function number() - { - return '315'; - } - - public function unicodeName() - { - return 'Devanagari'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptDogr.php b/vendor/fisharebest/localization/src/Script/ScriptDogr.php deleted file mode 100644 index c9e737c5b0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptDogr.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Dogra script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptDogr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Dogr'; - } - - public function number() - { - return '328'; - } - - public function unicodeName() - { - return 'Dogra'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptDsrt.php b/vendor/fisharebest/localization/src/Script/ScriptDsrt.php deleted file mode 100644 index 53d1c20018..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptDsrt.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptDsrt - Representation of the Deseret (Mormon) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptDsrt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Dsrt'; - } - - public function number() - { - return '250'; - } - - public function unicodeName() - { - return 'Deseret'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptDupl.php b/vendor/fisharebest/localization/src/Script/ScriptDupl.php deleted file mode 100644 index a84a8920d9..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptDupl.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptDupl - Representation of the Duployan shorthand, Duployan stenography script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptDupl extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Dupl'; - } - - public function number() - { - return '755'; - } - - public function unicodeName() - { - return 'Duployan'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptEgyd.php b/vendor/fisharebest/localization/src/Script/ScriptEgyd.php deleted file mode 100644 index 0bb40032f2..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptEgyd.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptEgyd - Representation of the Egyptian demotic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptEgyd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Egyd'; - } - - public function number() - { - return '070'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptEgyh.php b/vendor/fisharebest/localization/src/Script/ScriptEgyh.php deleted file mode 100644 index affc993207..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptEgyh.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptEgyh - Representation of the Egyptian hieratic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptEgyh extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Egyh'; - } - - public function number() - { - return '060'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptEgyp.php b/vendor/fisharebest/localization/src/Script/ScriptEgyp.php deleted file mode 100644 index 545095f856..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptEgyp.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptEgyp - Representation of the Egyptian hieroglyphs script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptEgyp extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Egyp'; - } - - public function number() - { - return '050'; - } - - public function unicodeName() - { - return 'Egyptian_Hieroglyphs'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptElba.php b/vendor/fisharebest/localization/src/Script/ScriptElba.php deleted file mode 100644 index e1bfc3d17d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptElba.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptElba - Representation of the Elbasan script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptElba extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Elba'; - } - - public function number() - { - return '226'; - } - - public function unicodeName() - { - return 'Elbasan'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptElym.php b/vendor/fisharebest/localization/src/Script/ScriptElym.php deleted file mode 100644 index 9343c84150..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptElym.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Elymaic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptElym extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Elym'; - } - - public function number() - { - return '128'; - } - - public function unicodeName() - { - return 'Elymaic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptEthi.php b/vendor/fisharebest/localization/src/Script/ScriptEthi.php deleted file mode 100644 index 0d0a3ac796..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptEthi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptEthi - Representation of the Ethiopic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptEthi extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Ethi'; - } - - public function number() - { - return '430'; - } - - public function unicodeName() - { - return 'Ethiopic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGeok.php b/vendor/fisharebest/localization/src/Script/ScriptGeok.php deleted file mode 100644 index 5f66983a2c..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGeok.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGeok - Representation of the Khutsuri (Asomtavruli and Nuskhuri) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGeok extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Geok'; - } - - public function number() - { - return '241'; - } - - public function unicodeName() - { - return 'Georgian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGeor.php b/vendor/fisharebest/localization/src/Script/ScriptGeor.php deleted file mode 100644 index e9d4027a70..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGeor.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGeor - Representation of the Georgian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGeor extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Geor'; - } - - public function number() - { - return '240'; - } - - public function unicodeName() - { - return 'Georgian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGlag.php b/vendor/fisharebest/localization/src/Script/ScriptGlag.php deleted file mode 100644 index 2d44daa5fc..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGlag.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGlag - Representation of the Glagolitic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGlag extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Glag'; - } - - public function number() - { - return '225'; - } - - public function unicodeName() - { - return 'Glagolitic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGong.php b/vendor/fisharebest/localization/src/Script/ScriptGong.php deleted file mode 100644 index cc7dbf5eb0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGong.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Gunjala Gondi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGong extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Gong'; - } - - public function number() - { - return '312'; - } - - public function unicodeName() - { - return 'Gunjala_Gondi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGonm.php b/vendor/fisharebest/localization/src/Script/ScriptGonm.php deleted file mode 100644 index 20d1ed4e7a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGonm.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Masaram Gondi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGonm extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Gonm'; - } - - public function number() - { - return '313'; - } - - public function unicodeName() - { - return 'Masaram_Gondi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGoth.php b/vendor/fisharebest/localization/src/Script/ScriptGoth.php deleted file mode 100644 index aabb19e8ef..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGoth.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGoth - Representation of the Gothic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGoth extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Goth'; - } - - public function number() - { - return '206'; - } - - public function unicodeName() - { - return 'Gothic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGran.php b/vendor/fisharebest/localization/src/Script/ScriptGran.php deleted file mode 100644 index 29d63c9888..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGran.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGran - Representation of the Grantha script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGran extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Gran'; - } - - public function number() - { - return '343'; - } - - public function unicodeName() - { - return 'Grantha'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGrek.php b/vendor/fisharebest/localization/src/Script/ScriptGrek.php deleted file mode 100644 index 437747875d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGrek.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGrek - Representation of the Greek script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGrek extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Grek'; - } - - public function number() - { - return '200'; - } - - public function unicodeName() - { - return 'Greek'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGujr.php b/vendor/fisharebest/localization/src/Script/ScriptGujr.php deleted file mode 100644 index 9c9644dc58..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGujr.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGujr - Representation of the Gujarati script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGujr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Gujr'; - } - - public function numerals() - { - return array('૦', '૧', '૨', '૩', '૪', '૫', '૬', '૭', '૮', '૯'); - } - - public function number() - { - return '320'; - } - - public function unicodeName() - { - return 'Gujarati'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptGuru.php b/vendor/fisharebest/localization/src/Script/ScriptGuru.php deleted file mode 100644 index 50169918f1..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptGuru.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptGuru - Representation of the Gurmukhi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptGuru extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Guru'; - } - - public function numerals() - { - return array('੦', '੧', '੨', '੩', '੪', '੫', '੬', '੭', '੮', '੯'); - } - - public function number() - { - return '310'; - } - - public function unicodeName() - { - return 'Gurmukhi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHanb.php b/vendor/fisharebest/localization/src/Script/ScriptHanb.php deleted file mode 100644 index f9c7a92085..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHanb.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHanb - Representation of the Hangul+Bopomofo script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHanb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hanb'; - } - - public function number() - { - return '503'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHang.php b/vendor/fisharebest/localization/src/Script/ScriptHang.php deleted file mode 100644 index ca23112d47..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHang.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHang - Representation of the Hangul script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHang extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hang'; - } - - public function number() - { - return '286'; - } - - public function unicodeName() - { - return 'Hangul'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHani.php b/vendor/fisharebest/localization/src/Script/ScriptHani.php deleted file mode 100644 index 13e8de6897..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHani.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHani - Representation of the Han (Hanzi, Kanji, Hanja) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHani extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hani'; - } - - public function numerals() - { - return array('〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'); - } - - public function number() - { - return '500'; - } - - public function unicodeName() - { - return 'Han'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHano.php b/vendor/fisharebest/localization/src/Script/ScriptHano.php deleted file mode 100644 index c32915c67e..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHano.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHano - Representation of the Hanunoo (Hanunóo) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHano extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hano'; - } - - public function number() - { - return '371'; - } - - public function unicodeName() - { - return 'Hanunoo'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHans.php b/vendor/fisharebest/localization/src/Script/ScriptHans.php deleted file mode 100644 index 65263c2000..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHans.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHans - Representation of the Simplified Han script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHans extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hans'; - } - - public function number() - { - return '501'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHant.php b/vendor/fisharebest/localization/src/Script/ScriptHant.php deleted file mode 100644 index 50eab29db3..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHant.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHant - Representation of the Traditional Han script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHant extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hant'; - } - - public function number() - { - return '502'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHatr.php b/vendor/fisharebest/localization/src/Script/ScriptHatr.php deleted file mode 100644 index 030eadc1cb..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHatr.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHatr - Representation of the Hatran script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHatr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hatr'; - } - - public function number() - { - return '127'; - } - - public function unicodeName() - { - return 'Hatran'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHebr.php b/vendor/fisharebest/localization/src/Script/ScriptHebr.php deleted file mode 100644 index dca6428fec..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHebr.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHebr - Representation of the Hebrew script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHebr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hebr'; - } - - public function number() - { - return '125'; - } - - public function unicodeName() - { - return 'Hebrew'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHira.php b/vendor/fisharebest/localization/src/Script/ScriptHira.php deleted file mode 100644 index 3897e27696..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHira.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHira - Representation of the Hiragana script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHira extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hira'; - } - - public function number() - { - return '410'; - } - - public function unicodeName() - { - return 'Hiragana'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHluw.php b/vendor/fisharebest/localization/src/Script/ScriptHluw.php deleted file mode 100644 index 8778c81e16..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHluw.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHluw - Representation of the Anatolian Hieroglyphs (Luwian Hieroglyphs, Hittite Hieroglyphs) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHluw extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hluw'; - } - - public function number() - { - return '080'; - } - - public function unicodeName() - { - return 'Anatolian_Hieroglyphs'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHmng.php b/vendor/fisharebest/localization/src/Script/ScriptHmng.php deleted file mode 100644 index a206f6c332..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHmng.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHmng - Representation of the Pahawh Hmong script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHmng extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hmng'; - } - - public function number() - { - return '450'; - } - - public function unicodeName() - { - return 'Pahawh_Hmong'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHmnp.php b/vendor/fisharebest/localization/src/Script/ScriptHmnp.php deleted file mode 100644 index a6ef40d3b2..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHmnp.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Nyiakeng Puachue Hmong script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHmnp extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hmnp'; - } - - public function number() - { - return '451'; - } - - public function unicodeName() - { - return 'Nyiakeng_Puachue_Hmong'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHrkt.php b/vendor/fisharebest/localization/src/Script/ScriptHrkt.php deleted file mode 100644 index 141d7c86f1..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHrkt.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHrkt - Representation of the Japanese syllabaries (alias for Hiragana + Katakana) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHrkt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hrkt'; - } - - public function number() - { - return '412'; - } - - public function unicodeName() - { - return 'Katakana_Or_Hiragana'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptHung.php b/vendor/fisharebest/localization/src/Script/ScriptHung.php deleted file mode 100644 index 3e8dfcf886..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptHung.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptHung - Representation of the Old Hungarian (Hungarian Runic) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptHung extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Hung'; - } - - public function number() - { - return '176'; - } - - public function unicodeName() - { - return 'Old_Hungarian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptInds.php b/vendor/fisharebest/localization/src/Script/ScriptInds.php deleted file mode 100644 index c356257b6b..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptInds.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptInds - Representation of the Indus (Harappan) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptInds extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Inds'; - } - - public function number() - { - return '610'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptInterface.php b/vendor/fisharebest/localization/src/Script/ScriptInterface.php deleted file mode 100644 index 4a0a94168a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptInterface.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Interface ScriptInterface - Representation of a writing system. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -interface ScriptInterface -{ - /** - * The ISO15924 code for this script. - * - * @return string - */ - public function code(); - - /** - * Is the script usually written left-to-right “ltr” or right-to-left “rtl”. - * - * @return string “ltr” or “rtl” - */ - public function direction(); - - /** - * The ISO15924 number for this script. - * - * @return string - */ - public function number(); - - /** - * What are the default digits used by this script? - * This is an array of translations from Hindu-Arabic (0123456789) - * symbols to other symbols. For English, etc., this array is empty. - * Some locales (e.g. Persian) use their own digits, rather than - * the default digits of their script. - * - * @return string[] - */ - public function numerals(); - - /** - * The Unicode name (aka “property value alias”) for this script, or - * null if one does not exist. - * - * @return string|null - */ - public function unicodeName(); -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptItal.php b/vendor/fisharebest/localization/src/Script/ScriptItal.php deleted file mode 100644 index 9ea88af0b0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptItal.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptItal - Representation of the Old Italic (Etruscan, Oscan, etc.) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptItal extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Ital'; - } - - public function number() - { - return '210'; - } - - public function unicodeName() - { - return 'Old_Italic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptJamo.php b/vendor/fisharebest/localization/src/Script/ScriptJamo.php deleted file mode 100644 index ab5628855c..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptJamo.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptJamo - Representation of the Jamo script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptJamo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Jamo'; - } - - public function number() - { - return '284'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptJava.php b/vendor/fisharebest/localization/src/Script/ScriptJava.php deleted file mode 100644 index 6839bc93ee..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptJava.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptJava - Representation of the Javanese script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptJava extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Java'; - } - - public function numerals() - { - return array('꧐', '꧑', '꧒', '꧓', '꧔', '꧕', '꧖', '꧗', '꧘', '꧙'); - } - - public function number() - { - return '361'; - } - - public function unicodeName() - { - return 'Javanese'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptJpan.php b/vendor/fisharebest/localization/src/Script/ScriptJpan.php deleted file mode 100644 index 750b32d311..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptJpan.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptJpan - Representation of the Japanese script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptJpan extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Jpan'; - } - - public function number() - { - return '413'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptJurc.php b/vendor/fisharebest/localization/src/Script/ScriptJurc.php deleted file mode 100644 index 3534793095..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptJurc.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptJurc - Representation of the Jurchen script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptJurc extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Jurc'; - } - - public function number() - { - return '510'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKali.php b/vendor/fisharebest/localization/src/Script/ScriptKali.php deleted file mode 100644 index 002690b839..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKali.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKali - Representation of the Kayah Li script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKali extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kali'; - } - - public function numerals() - { - return array('꤀', '꤁', '꤂', '꤃', '꤄', '꤅', '꤆', '꤇', '꤈', '꤉'); - } - - public function number() - { - return '357'; - } - - public function unicodeName() - { - return 'Kayah_Li'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKana.php b/vendor/fisharebest/localization/src/Script/ScriptKana.php deleted file mode 100644 index 6670d4a9b1..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKana.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKana - Representation of the Katakana script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKana extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kana'; - } - - public function number() - { - return '411'; - } - - public function unicodeName() - { - return 'Katakana'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKhar.php b/vendor/fisharebest/localization/src/Script/ScriptKhar.php deleted file mode 100644 index 4db8d9540d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKhar.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKhar - Representation of the Kharoshthi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKhar extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Khar'; - } - - public function number() - { - return '305'; - } - - public function unicodeName() - { - return 'Kharoshthi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKhmr.php b/vendor/fisharebest/localization/src/Script/ScriptKhmr.php deleted file mode 100644 index a2f47f176f..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKhmr.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKhmr - Representation of the Khmer script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKhmr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Khmr'; - } - - public function numerals() - { - return array('០', '១', '២', '៣', '៤', '៥', '៦', '៧', '៨', '៩'); - } - - public function number() - { - return '355'; - } - - public function unicodeName() - { - return 'Khmer'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKhoj.php b/vendor/fisharebest/localization/src/Script/ScriptKhoj.php deleted file mode 100644 index ef2e358b5a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKhoj.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKhoj - Representation of the Khojki script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKhoj extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Khoj'; - } - - public function number() - { - return '322'; - } - - public function unicodeName() - { - return 'Khojki'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKitl.php b/vendor/fisharebest/localization/src/Script/ScriptKitl.php deleted file mode 100644 index 4a5a1d04fa..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKitl.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKitl - Representation of the Khitan large script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKitl extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kitl'; - } - - public function number() - { - return '505'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKits.php b/vendor/fisharebest/localization/src/Script/ScriptKits.php deleted file mode 100644 index 7b2ba1b593..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKits.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKits - Representation of the Khitan small script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKits extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kits'; - } - - public function number() - { - return '288'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKnda.php b/vendor/fisharebest/localization/src/Script/ScriptKnda.php deleted file mode 100644 index cc49c45a11..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKnda.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKnda - Representation of the Kannada script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKnda extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Knda'; - } - - public function numerals() - { - return array('೦', '೧', '೨', '೩', '೪', '೫', '೬', '೭', '೮', '೯'); - } - - public function number() - { - return '345'; - } - - public function unicodeName() - { - return 'Kannada'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKore.php b/vendor/fisharebest/localization/src/Script/ScriptKore.php deleted file mode 100644 index a46a0b16c7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKore.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKore - Representation of the Korean (alias for Hangul + Han) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKore extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kore'; - } - - public function number() - { - return '287'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKpel.php b/vendor/fisharebest/localization/src/Script/ScriptKpel.php deleted file mode 100644 index d9b58ed046..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKpel.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKpel - Representation of the Kpelle script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKpel extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kpel'; - } - - public function number() - { - return '436'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptKthi.php b/vendor/fisharebest/localization/src/Script/ScriptKthi.php deleted file mode 100644 index 95ad1f71a7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptKthi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptKthi - Representation of the Kaithi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptKthi extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Kthi'; - } - - public function number() - { - return '317'; - } - - public function unicodeName() - { - return 'Kaithi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLana.php b/vendor/fisharebest/localization/src/Script/ScriptLana.php deleted file mode 100644 index a229172d3d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLana.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLana - Representation of the Tai Tham (Lanna) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLana extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Lana'; - } - - public function numerals() - { - return array('᪀', '᪁', '᪂', '᪃', '᪄', '᪅', '᪆', '᪇', '᪈', '᪉'); - } - - public function number() - { - return '351'; - } - - public function unicodeName() - { - return 'Tai_Tham'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLaoo.php b/vendor/fisharebest/localization/src/Script/ScriptLaoo.php deleted file mode 100644 index 5b6c458c6f..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLaoo.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLaoo - Representation of the Lao script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLaoo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Laoo'; - } - - public function numerals() - { - return array('໐', '໑', '໒', '໓', '໔', '໕', '໖', '໗', '໘', '໙'); - } - - public function number() - { - return '356'; - } - - public function unicodeName() - { - return 'Lao'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLatf.php b/vendor/fisharebest/localization/src/Script/ScriptLatf.php deleted file mode 100644 index 738c775817..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLatf.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLatf - Representation of the Latin (Fraktur variant) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLatf extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Latf'; - } - - public function number() - { - return '217'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLatg.php b/vendor/fisharebest/localization/src/Script/ScriptLatg.php deleted file mode 100644 index e034d5e645..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLatg.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLatg - Representation of the Latin (Gaelic variant) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLatg extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Latg'; - } - - public function number() - { - return '216'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLatn.php b/vendor/fisharebest/localization/src/Script/ScriptLatn.php deleted file mode 100644 index f3abcaf6f6..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLatn.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLatn - Representation of the Latin script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLatn extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Latn'; - } - - public function number() - { - return '215'; - } - - public function unicodeName() - { - return 'Latin'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLeke.php b/vendor/fisharebest/localization/src/Script/ScriptLeke.php deleted file mode 100644 index 10cbffddd7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLeke.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLeke - Representation of the Leke script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLeke extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Leke'; - } - - public function number() - { - return '364'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLepc.php b/vendor/fisharebest/localization/src/Script/ScriptLepc.php deleted file mode 100644 index e27b3d3886..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLepc.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLepc - Representation of the Lepcha (Róng) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLepc extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Lepc'; - } - - public function numerals() - { - return array('᱀', '᱁', '᱂', '᱃', '᱄', '᱅', '᱆', '᱇', '᱈', '᱉'); - } - - public function number() - { - return '335'; - } - - public function unicodeName() - { - return 'Lepcha'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLimb.php b/vendor/fisharebest/localization/src/Script/ScriptLimb.php deleted file mode 100644 index 286656ab0f..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLimb.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLimb - Representation of the Limbu script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLimb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Limb'; - } - - public function numerals() - { - return array('᥆', '᥇', '᥈', '᥉', '᥊', '᥋', '᥌', '᥍', '᥎', '᥏'); - } - - public function number() - { - return '336'; - } - - public function unicodeName() - { - return 'Limbu'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLina.php b/vendor/fisharebest/localization/src/Script/ScriptLina.php deleted file mode 100644 index 4e86240322..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLina.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLina - Representation of the Linear A script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLina extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Lina'; - } - - public function number() - { - return '400'; - } - - public function unicodeName() - { - return 'Linear_A'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLinb.php b/vendor/fisharebest/localization/src/Script/ScriptLinb.php deleted file mode 100644 index c8c2bc4971..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLinb.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLinb - Representation of the Linear B script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLinb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Linb'; - } - - public function number() - { - return '401'; - } - - public function unicodeName() - { - return 'Linear_B'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLisu.php b/vendor/fisharebest/localization/src/Script/ScriptLisu.php deleted file mode 100644 index f35da74f05..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLisu.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLisu - Representation of the Lisu (Fraser) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLisu extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Lisu'; - } - - public function number() - { - return '399'; - } - - public function unicodeName() - { - return 'Lisu'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLoma.php b/vendor/fisharebest/localization/src/Script/ScriptLoma.php deleted file mode 100644 index 3748624232..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLoma.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLoma - Representation of the Loma script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLoma extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Loma'; - } - - public function number() - { - return '437'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLyci.php b/vendor/fisharebest/localization/src/Script/ScriptLyci.php deleted file mode 100644 index 2a5a1d3bb8..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLyci.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLyci - Representation of the Lycian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLyci extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Lyci'; - } - - public function number() - { - return '202'; - } - - public function unicodeName() - { - return 'Lycian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptLydi.php b/vendor/fisharebest/localization/src/Script/ScriptLydi.php deleted file mode 100644 index 1a3b414ebc..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptLydi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptLydi - Representation of the Lydian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptLydi extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Lydi'; - } - - public function number() - { - return '116'; - } - - public function unicodeName() - { - return 'Lydian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMahj.php b/vendor/fisharebest/localization/src/Script/ScriptMahj.php deleted file mode 100644 index 4bf3ba63df..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMahj.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMahj - Representation of the Mahajani script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMahj extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mahj'; - } - - public function number() - { - return '314'; - } - - public function unicodeName() - { - return 'Mahajani'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMaka.php b/vendor/fisharebest/localization/src/Script/ScriptMaka.php deleted file mode 100644 index c39a65262a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMaka.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Makasar script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMaka extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Maka'; - } - - public function number() - { - return '366'; - } - - public function unicodeName() - { - return 'Makasar'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMand.php b/vendor/fisharebest/localization/src/Script/ScriptMand.php deleted file mode 100644 index 681fc309ec..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMand.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMand - Representation of the Mandaic, Mandaean script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMand extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mand'; - } - - public function number() - { - return '140'; - } - - public function unicodeName() - { - return 'Mandaic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMani.php b/vendor/fisharebest/localization/src/Script/ScriptMani.php deleted file mode 100644 index 38fd481973..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMani.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMani - Representation of the Manichaean script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMani extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mani'; - } - - public function number() - { - return '139'; - } - - public function unicodeName() - { - return 'Manichaean'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMarc.php b/vendor/fisharebest/localization/src/Script/ScriptMarc.php deleted file mode 100644 index 0356529f34..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMarc.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMarc - Representation of the Marchen script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMarc extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Marc'; - } - - public function number() - { - return '332'; - } - - public function unicodeName() - { - return 'Marchen'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMaya.php b/vendor/fisharebest/localization/src/Script/ScriptMaya.php deleted file mode 100644 index 976e87bc7d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMaya.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMaya - Representation of the Mayan hieroglyphs script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMaya extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Maya'; - } - - public function number() - { - return '090'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMedf.php b/vendor/fisharebest/localization/src/Script/ScriptMedf.php deleted file mode 100644 index f3395e6e64..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMedf.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptCpmn - Representation of the Medefaidrin script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMedf extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Medf'; - } - - public function number() - { - return '265'; - } - - public function unicodeName() - { - return 'Medefaidrin'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMend.php b/vendor/fisharebest/localization/src/Script/ScriptMend.php deleted file mode 100644 index 51f8d19cc4..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMend.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMend - Representation of the Mende Kikakui script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMend extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mend'; - } - - public function number() - { - return '438'; - } - - public function unicodeName() - { - return 'Mende_Kikakui'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMerc.php b/vendor/fisharebest/localization/src/Script/ScriptMerc.php deleted file mode 100644 index 5cdd7e999e..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMerc.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMerc - Representation of the Meroitic Cursive script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMerc extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Merc'; - } - - public function number() - { - return '101'; - } - - public function unicodeName() - { - return 'Meroitic_Cursive'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMero.php b/vendor/fisharebest/localization/src/Script/ScriptMero.php deleted file mode 100644 index 9784133d5f..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMero.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMero - Representation of the Meroitic Hieroglyphs script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMero extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mero'; - } - - public function number() - { - return '100'; - } - - public function unicodeName() - { - return 'Meroitic_Hieroglyphs'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMlym.php b/vendor/fisharebest/localization/src/Script/ScriptMlym.php deleted file mode 100644 index 6843f3c0f3..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMlym.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMlym - Representation of the Malayalam script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMlym extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mlym'; - } - - public function numerals() - { - return array('൦', '൧', '൨', '൩', '൪', '൫', '൬', '൭', '൮', '൯'); - } - - public function number() - { - return '347'; - } - - public function unicodeName() - { - return 'Malayalam'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptModi.php b/vendor/fisharebest/localization/src/Script/ScriptModi.php deleted file mode 100644 index ef14e639a4..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptModi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptModi - Representation of the Modi, Moḍī script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptModi extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Modi'; - } - - public function number() - { - return '324'; - } - - public function unicodeName() - { - return 'Modi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMong.php b/vendor/fisharebest/localization/src/Script/ScriptMong.php deleted file mode 100644 index 1b0bd0fe9d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMong.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMong - Representation of the Mongolian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMong extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mong'; - } - - public function numerals() - { - return array('᠐', '᠑', '᠒', '᠓', '᠔', '᠕', '᠖', '᠗', '᠘', '᠙'); - } - - public function number() - { - return '145'; - } - - public function unicodeName() - { - return 'Mongolian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMoon.php b/vendor/fisharebest/localization/src/Script/ScriptMoon.php deleted file mode 100644 index 1e0d155503..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMoon.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMoon - Representation of the Moon (Moon code, Moon script, Moon type) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMoon extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Moon'; - } - - public function number() - { - return '218'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMroo.php b/vendor/fisharebest/localization/src/Script/ScriptMroo.php deleted file mode 100644 index 56b1e57e86..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMroo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMroo - Representation of the Mro, Mru script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMroo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mroo'; - } - - public function number() - { - return '264'; - } - - public function unicodeName() - { - return 'Mro'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMtei.php b/vendor/fisharebest/localization/src/Script/ScriptMtei.php deleted file mode 100644 index c2a8eefcb3..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMtei.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMtei - Representation of the Meitei Mayek (Meithei, Meetei) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMtei extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mtei'; - } - - public function numerals() - { - return array('꯰', '꯱', '꯲', '꯳', '꯴', '꯵', '꯶', '꯷', '꯸', '꯹'); - } - - public function number() - { - return '337'; - } - - public function unicodeName() - { - return 'Meetei_Mayek'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMult.php b/vendor/fisharebest/localization/src/Script/ScriptMult.php deleted file mode 100644 index c851ef7615..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMult.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMult - Representation of the Multani script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMult extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mult'; - } - - public function number() - { - return '323'; - } - - public function unicodeName() - { - return 'Multani'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptMymr.php b/vendor/fisharebest/localization/src/Script/ScriptMymr.php deleted file mode 100644 index fabee28a12..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptMymr.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptMymr - Representation of the Myanmar script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptMymr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Mymr'; - } - - public function numerals() - { - return array('၀', '၁', '၂', '၃', '၄', '၅', '၆', '၇', '၈', '၉'); - } - - public function number() - { - return '350'; - } - - public function unicodeName() - { - return 'Myanmar'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNand.php b/vendor/fisharebest/localization/src/Script/ScriptNand.php deleted file mode 100644 index 5ed22d819a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNand.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNand - Representation of the Nandinagari script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNand extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Nand'; - } - - public function number() - { - return '311'; - } - - public function unicodeName() - { - return 'Nandinagari'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNarb.php b/vendor/fisharebest/localization/src/Script/ScriptNarb.php deleted file mode 100644 index cce48ad63b..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNarb.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNarb - Representation of the Old North Arabian (Ancient North Arabian) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNarb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Narb'; - } - - public function number() - { - return '106'; - } - - public function unicodeName() - { - return 'Old_North_Arabian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNbat.php b/vendor/fisharebest/localization/src/Script/ScriptNbat.php deleted file mode 100644 index 11b43967e4..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNbat.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNbat - Representation of the Nabataean script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNbat extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Nbat'; - } - - public function number() - { - return '159'; - } - - public function unicodeName() - { - return 'Nabataean'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNewa.php b/vendor/fisharebest/localization/src/Script/ScriptNewa.php deleted file mode 100644 index 1f18a33033..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNewa.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNewa - Representation of the Newa script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNewa extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Newa'; - } - - public function number() - { - return '333'; - } - - public function unicodeName() - { - return 'Newa'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNkdb.php b/vendor/fisharebest/localization/src/Script/ScriptNkdb.php deleted file mode 100644 index 1bf219a4ef..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNkdb.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNkdb - Representation of the Naxi Dongba script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNkdb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Nkdb'; - } - - public function number() - { - return '085'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNkgb.php b/vendor/fisharebest/localization/src/Script/ScriptNkgb.php deleted file mode 100644 index 0698cf9bf0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNkgb.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNkgb - Representation of the Nakhi Geba ('Na-'Khi ²Ggŏ-¹baw, Naxi Geba) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNkgb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Nkgb'; - } - - public function number() - { - return '420'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNkoo.php b/vendor/fisharebest/localization/src/Script/ScriptNkoo.php deleted file mode 100644 index bebadc0e4e..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNkoo.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNkoo - Representation of the N’Ko script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNkoo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Nkoo'; - } - - public function numerals() - { - return array('߀', '߁', '߂', '߃', '߄', '߅', '߆', '߇', '߈', '߉'); - } - - public function number() - { - return '165'; - } - - public function unicodeName() - { - return 'Nko'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptNshu.php b/vendor/fisharebest/localization/src/Script/ScriptNshu.php deleted file mode 100644 index 11a69a1a84..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptNshu.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptNshu - Representation of the Nüshu script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptNshu extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Nshu'; - } - - public function number() - { - return '499'; - } - - public function unicodeName() - { - return 'Nushu'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptOgam.php b/vendor/fisharebest/localization/src/Script/ScriptOgam.php deleted file mode 100644 index e340ec2aa7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptOgam.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptOgam - Representation of the Ogham script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptOgam extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Ogam'; - } - - public function number() - { - return '212'; - } - - public function unicodeName() - { - return 'Ogham'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptOlck.php b/vendor/fisharebest/localization/src/Script/ScriptOlck.php deleted file mode 100644 index e46ad519ef..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptOlck.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptOlck - Representation of the Ol Chiki (Ol Cemet’, Ol, Santali) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptOlck extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Olck'; - } - - public function numerals() - { - return array('᱐', '᱑', '᱒', '᱓', '᱔', '᱕', '᱖', '᱗', '᱘', '᱙'); - } - - public function number() - { - return '261'; - } - - public function unicodeName() - { - return 'Ol_Chiki'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptOrkh.php b/vendor/fisharebest/localization/src/Script/ScriptOrkh.php deleted file mode 100644 index a619fb0c83..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptOrkh.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptOrkh - Representation of the Old Turkic, Orkhon Runic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptOrkh extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Orkh'; - } - - public function number() - { - return '175'; - } - - public function unicodeName() - { - return 'Old_Turkic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptOrya.php b/vendor/fisharebest/localization/src/Script/ScriptOrya.php deleted file mode 100644 index 917f0de89d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptOrya.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptOrya - Representation of the Oriya script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptOrya extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Orya'; - } - - public function numerals() - { - return array('୦', '୧', '୨', '୩', '୪', '୫', '୬', '୭', '୮', '୯'); - } - - public function number() - { - return '327'; - } - - public function unicodeName() - { - return 'Oriya'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptOsge.php b/vendor/fisharebest/localization/src/Script/ScriptOsge.php deleted file mode 100644 index 3061b325c0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptOsge.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptOsge - Representation of the Osage script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptOsge extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Osge'; - } - - public function number() - { - return '219'; - } - - public function unicodeName() - { - return 'Osage'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptOsma.php b/vendor/fisharebest/localization/src/Script/ScriptOsma.php deleted file mode 100644 index c99a36bcbe..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptOsma.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptOsma - Representation of the Osmanya script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptOsma extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Osma'; - } - - public function numerals() - { - return array('𐒠', '𐒡', '𐒢', '𐒣', '𐒤', '𐒥', '𐒦', '𐒧', '𐒨', '𐒩'); - } - - public function number() - { - return '260'; - } - - public function unicodeName() - { - return 'Osmanya'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPalm.php b/vendor/fisharebest/localization/src/Script/ScriptPalm.php deleted file mode 100644 index 936df8f338..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPalm.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPalm - Representation of the Palmyrene script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPalm extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Palm'; - } - - public function number() - { - return '126'; - } - - public function unicodeName() - { - return 'Palmyrene'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPauc.php b/vendor/fisharebest/localization/src/Script/ScriptPauc.php deleted file mode 100644 index 87213de890..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPauc.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPauc - Representation of the Pau Cin Hau script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPauc extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Pauc'; - } - - public function number() - { - return '263'; - } - - public function unicodeName() - { - return 'Pau_Cin_Hau'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPerm.php b/vendor/fisharebest/localization/src/Script/ScriptPerm.php deleted file mode 100644 index da920d92f7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPerm.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPerm - Representation of the Old Permic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPerm extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Perm'; - } - - public function number() - { - return '227'; - } - - public function unicodeName() - { - return 'Old_Permic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPhag.php b/vendor/fisharebest/localization/src/Script/ScriptPhag.php deleted file mode 100644 index 707b2d500d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPhag.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPhag - Representation of the Phags-pa script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPhag extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Phag'; - } - - public function number() - { - return '331'; - } - - public function unicodeName() - { - return 'Phags_Pa'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPhli.php b/vendor/fisharebest/localization/src/Script/ScriptPhli.php deleted file mode 100644 index ab54f010d1..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPhli.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPhli - Representation of the Inscriptional Pahlavi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPhli extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Phli'; - } - - public function number() - { - return '131'; - } - - public function unicodeName() - { - return 'Inscriptional_Pahlavi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPhlp.php b/vendor/fisharebest/localization/src/Script/ScriptPhlp.php deleted file mode 100644 index 25dc803db0..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPhlp.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPhlp - Representation of the Psalter Pahlavi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPhlp extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Phlp'; - } - - public function number() - { - return '132'; - } - - public function unicodeName() - { - return 'Psalter_Pahlavi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPhlv.php b/vendor/fisharebest/localization/src/Script/ScriptPhlv.php deleted file mode 100644 index 75ab30d856..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPhlv.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPhlv - Representation of the Book Pahlavi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPhlv extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Phlv'; - } - - public function number() - { - return '133'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPhnx.php b/vendor/fisharebest/localization/src/Script/ScriptPhnx.php deleted file mode 100644 index 0343df80fe..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPhnx.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPhnx - Representation of the Phoenician script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPhnx extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Phnx'; - } - - public function number() - { - return '115'; - } - - public function unicodeName() - { - return 'Phoenician'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPiqd.php b/vendor/fisharebest/localization/src/Script/ScriptPiqd.php deleted file mode 100644 index a923349bce..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPiqd.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPiqd - Representation of the Piqd script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPiqd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Piqd'; - } - - public function number() - { - return '293'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPlrd.php b/vendor/fisharebest/localization/src/Script/ScriptPlrd.php deleted file mode 100644 index 44002e0069..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPlrd.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPlrd - Representation of the Miao (Pollard) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPlrd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Plrd'; - } - - public function number() - { - return '282'; - } - - public function unicodeName() - { - return 'Miao'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptPrti.php b/vendor/fisharebest/localization/src/Script/ScriptPrti.php deleted file mode 100644 index 892bae746a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptPrti.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptPrti - Representation of the Inscriptional Parthian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptPrti extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Prti'; - } - - public function number() - { - return '130'; - } - - public function unicodeName() - { - return 'Inscriptional_Parthian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptRjng.php b/vendor/fisharebest/localization/src/Script/ScriptRjng.php deleted file mode 100644 index 8a8d895371..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptRjng.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptRjng - Representation of the Rejang (Redjang, Kaganga) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptRjng extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Rjng'; - } - - public function number() - { - return '363'; - } - - public function unicodeName() - { - return 'Rejang'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptRohg.php b/vendor/fisharebest/localization/src/Script/ScriptRohg.php deleted file mode 100644 index b14829a042..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptRohg.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptRunr - Representation of the Hanifi Rohingya script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptRohg extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Rohg'; - } - - public function number() - { - return '167'; - } - - public function unicodeName() - { - return 'Hanifi_Rohingya'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptRoro.php b/vendor/fisharebest/localization/src/Script/ScriptRoro.php deleted file mode 100644 index fb4555d608..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptRoro.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptRoro - Representation of the Rongorongo script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptRoro extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Roro'; - } - - public function number() - { - return '620'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptRunr.php b/vendor/fisharebest/localization/src/Script/ScriptRunr.php deleted file mode 100644 index dc451ae56a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptRunr.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptRunr - Representation of the Runic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptRunr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Runr'; - } - - public function number() - { - return '211'; - } - - public function unicodeName() - { - return 'Runic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSamr.php b/vendor/fisharebest/localization/src/Script/ScriptSamr.php deleted file mode 100644 index fbf8f2e578..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSamr.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSamr - Representation of the Samaritan script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSamr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Samr'; - } - - public function number() - { - return '123'; - } - - public function unicodeName() - { - return 'Samaritan'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSara.php b/vendor/fisharebest/localization/src/Script/ScriptSara.php deleted file mode 100644 index 0d484c5214..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSara.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSara - Representation of the Sarati script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSara extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sara'; - } - - public function number() - { - return '292'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSarb.php b/vendor/fisharebest/localization/src/Script/ScriptSarb.php deleted file mode 100644 index 09b558ffa7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSarb.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSarb - Representation of the Old South Arabian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSarb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sarb'; - } - - public function number() - { - return '105'; - } - - public function unicodeName() - { - return 'Old_South_Arabian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSaur.php b/vendor/fisharebest/localization/src/Script/ScriptSaur.php deleted file mode 100644 index d35c314703..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSaur.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSaur - Representation of the Saurashtra script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSaur extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Saur'; - } - - public function numerals() - { - return array('꣐', '꣑', '꣒', '꣓', '꣔', '꣕', '꣖', '꣗', '꣘', '꣙'); - } - - public function number() - { - return '344'; - } - - public function unicodeName() - { - return 'Saurashtra'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSgnw.php b/vendor/fisharebest/localization/src/Script/ScriptSgnw.php deleted file mode 100644 index bc19dbaeb6..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSgnw.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSgnw - Representation of the SignWriting script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSgnw extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sgnw'; - } - - public function number() - { - return '095'; - } - - public function unicodeName() - { - return 'SignWriting'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptShaw.php b/vendor/fisharebest/localization/src/Script/ScriptShaw.php deleted file mode 100644 index 447bc61678..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptShaw.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptShaw - Representation of the Shavian (Shaw) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptShaw extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Shaw'; - } - - public function number() - { - return '281'; - } - - public function unicodeName() - { - return 'Shavian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptShrd.php b/vendor/fisharebest/localization/src/Script/ScriptShrd.php deleted file mode 100644 index 9895b2e726..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptShrd.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptShrd - Representation of the Sharada, Śāradā script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptShrd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Shrd'; - } - - public function numerals() - { - return array('𑇐', '𑇑', '𑇒', '𑇓', '𑇔', '𑇕', '𑇖', '𑇗', '𑇘', '𑇙'); - } - - public function number() - { - return '319'; - } - - public function unicodeName() - { - return 'Sharada'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptShui.php b/vendor/fisharebest/localization/src/Script/ScriptShui.php deleted file mode 100644 index b6d1b18c51..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptShui.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyrc - Representation of the Shuishu script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptShui extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Shui'; - } - - public function number() - { - return '530'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSidd.php b/vendor/fisharebest/localization/src/Script/ScriptSidd.php deleted file mode 100644 index a4f4d18a21..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSidd.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSidd - Representation of the Siddham, Siddhaṃ, Siddhamātṛkā script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSidd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sidd'; - } - - public function number() - { - return '302'; - } - - public function unicodeName() - { - return 'Siddham'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSind.php b/vendor/fisharebest/localization/src/Script/ScriptSind.php deleted file mode 100644 index 9ffc4aed69..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSind.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSind - Representation of the Khudawadi, Sindhi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSind extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sind'; - } - - public function number() - { - return '318'; - } - - public function unicodeName() - { - return 'Khudawadi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSinh.php b/vendor/fisharebest/localization/src/Script/ScriptSinh.php deleted file mode 100644 index 6b4fbd3a20..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSinh.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSinh - Representation of the Sinhala script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSinh extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sinh'; - } - - public function number() - { - return '348'; - } - - public function unicodeName() - { - return 'Sinhala'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSogd.php b/vendor/fisharebest/localization/src/Script/ScriptSogd.php deleted file mode 100644 index c64b0e146b..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSogd.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSogd - Representation of the Sogdian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSogd extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sogd'; - } - - public function number() - { - return '141'; - } - - public function unicodeName() - { - return 'Sogdian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSogo.php b/vendor/fisharebest/localization/src/Script/ScriptSogo.php deleted file mode 100644 index 82ff82b932..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSogo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyrc - Representation of the Old Sogdian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSogo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sogo'; - } - - public function number() - { - return '142'; - } - - public function unicodeName() - { - return 'Old_Sogdian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSora.php b/vendor/fisharebest/localization/src/Script/ScriptSora.php deleted file mode 100644 index d07ebd2c02..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSora.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSora - Representation of the Sora Sompeng script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSora extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sora'; - } - - public function numerals() - { - return array('𑃰', '𑃱', '𑃲', '𑃳', '𑃴', '𑃵', '𑃶', '𑃷', '𑃸', '𑃹'); - } - - public function number() - { - return '398'; - } - - public function unicodeName() - { - return 'Sora_Sompeng'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSoyo.php b/vendor/fisharebest/localization/src/Script/ScriptSoyo.php deleted file mode 100644 index ffbb8859fb..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSoyo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyrc - Representation of the Soyombo script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSoyo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Soyo'; - } - - public function number() - { - return '329'; - } - - public function unicodeName() - { - return 'Soyombo'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSund.php b/vendor/fisharebest/localization/src/Script/ScriptSund.php deleted file mode 100644 index 40f52f225d..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSund.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSund - Representation of the Sundanese script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSund extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sund'; - } - - public function numerals() - { - return array('᮰', '᮱', '᮲', '᮳', '᮴', '᮵', '᮶', '᮷', '᮸', '᮹'); - } - - public function number() - { - return '362'; - } - - public function unicodeName() - { - return 'Sundanese'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSylo.php b/vendor/fisharebest/localization/src/Script/ScriptSylo.php deleted file mode 100644 index 46b4b3e08e..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSylo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSylo - Representation of the Syloti Nagri script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSylo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Sylo'; - } - - public function number() - { - return '316'; - } - - public function unicodeName() - { - return 'Syloti_Nagri'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSyrc.php b/vendor/fisharebest/localization/src/Script/ScriptSyrc.php deleted file mode 100644 index 021ae6a185..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSyrc.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyrc - Representation of the Syriac script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSyrc extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Syrc'; - } - - public function number() - { - return '135'; - } - - public function unicodeName() - { - return 'Syriac'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSyre.php b/vendor/fisharebest/localization/src/Script/ScriptSyre.php deleted file mode 100644 index 0f7de46ed4..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSyre.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyre - Representation of the Syriac (Estrangelo variant) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSyre extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Syre'; - } - - public function number() - { - return '138'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSyrj.php b/vendor/fisharebest/localization/src/Script/ScriptSyrj.php deleted file mode 100644 index 3649e85d27..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSyrj.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyrj - Representation of the Syriac (Western variant) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSyrj extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Syrj'; - } - - public function number() - { - return '137'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptSyrn.php b/vendor/fisharebest/localization/src/Script/ScriptSyrn.php deleted file mode 100644 index 297c34a1d5..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptSyrn.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptSyrn - Representation of the Syriac (Eastern variant) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptSyrn extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Syrn'; - } - - public function number() - { - return '136'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTagb.php b/vendor/fisharebest/localization/src/Script/ScriptTagb.php deleted file mode 100644 index dcde2a3014..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTagb.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTagb - Representation of the Tagbanwa script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTagb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tagb'; - } - - public function number() - { - return '373'; - } - - public function unicodeName() - { - return 'Tagbanwa'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTakr.php b/vendor/fisharebest/localization/src/Script/ScriptTakr.php deleted file mode 100644 index 220c23ce3f..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTakr.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTakr - Representation of the Takri, Ṭākrī, Ṭāṅkrī script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTakr extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Takr'; - } - - public function numerals() - { - return array('𑛀', '𑛁', '𑛂', '𑛃', '𑛄', '𑛅', '𑛆', '𑛇', '𑛈', '𑛉'); - } - - public function number() - { - return '321'; - } - - public function unicodeName() - { - return 'Takri'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTale.php b/vendor/fisharebest/localization/src/Script/ScriptTale.php deleted file mode 100644 index 46ae8c5b50..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTale.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTale - Representation of the Tai Le script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTale extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tale'; - } - - public function number() - { - return '353'; - } - - public function unicodeName() - { - return 'Tai_Le'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTalu.php b/vendor/fisharebest/localization/src/Script/ScriptTalu.php deleted file mode 100644 index ef97ac2671..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTalu.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTalu - Representation of the New Tai Lue script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTalu extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Talu'; - } - - public function numerals() - { - return array('᧐', '᧑', '᧒', '᧓', '᧔', '᧕', '᧖', '᧗', '᧘', '᧙'); - } - - public function number() - { - return '354'; - } - - public function unicodeName() - { - return 'New_Tai_Lue'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTaml.php b/vendor/fisharebest/localization/src/Script/ScriptTaml.php deleted file mode 100644 index 2e8d7534a1..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTaml.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTaml - Representation of the Tamil script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTaml extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Taml'; - } - - public function numerals() - { - return array('௦', '௧', '௨', '௩', '௪', '௫', '௬', '௭', '௮', '௯'); - } - - public function number() - { - return '346'; - } - - public function unicodeName() - { - return 'Tamil'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTang.php b/vendor/fisharebest/localization/src/Script/ScriptTang.php deleted file mode 100644 index b450c585dc..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTang.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTang - Representation of the Tangut script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTang extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tang'; - } - - public function number() - { - return '520'; - } - - public function unicodeName() - { - return 'Tangut'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTavt.php b/vendor/fisharebest/localization/src/Script/ScriptTavt.php deleted file mode 100644 index 62a84ff5de..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTavt.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTavt - Representation of the Tai Viet script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTavt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tavt'; - } - - public function number() - { - return '359'; - } - - public function unicodeName() - { - return 'Tai_Viet'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTelu.php b/vendor/fisharebest/localization/src/Script/ScriptTelu.php deleted file mode 100644 index 65539d9a75..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTelu.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTelu - Representation of the Telugu script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTelu extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Telu'; - } - - public function numerals() - { - return array('౦', '౧', '౨', '౩', '౪', '౫', '౬', '౭', '౮', '౯'); - } - - public function number() - { - return '340'; - } - - public function unicodeName() - { - return 'Telugu'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTeng.php b/vendor/fisharebest/localization/src/Script/ScriptTeng.php deleted file mode 100644 index fc71f6e7cf..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTeng.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTeng - Representation of the Tengwar script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTeng extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Teng'; - } - - public function number() - { - return '290'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTfng.php b/vendor/fisharebest/localization/src/Script/ScriptTfng.php deleted file mode 100644 index d13673e71e..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTfng.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTfng - Representation of the Tifinagh script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTfng extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tfng'; - } - - public function number() - { - return '120'; - } - - public function unicodeName() - { - return 'Tifinagh'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTglg.php b/vendor/fisharebest/localization/src/Script/ScriptTglg.php deleted file mode 100644 index 9779ac34f7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTglg.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTglg - Representation of the Tagalog (Baybayin, Alibata) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTglg extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tglg'; - } - - public function number() - { - return '370'; - } - - public function unicodeName() - { - return 'Tagalog'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptThaa.php b/vendor/fisharebest/localization/src/Script/ScriptThaa.php deleted file mode 100644 index 63edd95c07..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptThaa.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptThaa - Representation of the Thaana script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptThaa extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Thaa'; - } - - public function number() - { - return '170'; - } - - public function unicodeName() - { - return 'Thaana'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptThai.php b/vendor/fisharebest/localization/src/Script/ScriptThai.php deleted file mode 100644 index e19319b72e..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptThai.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptThai - Representation of the Thai script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptThai extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Thai'; - } - - public function numerals() - { - return array('๐', '๑', '๒', '๓', '๔', '๕', '๖', '๗', '๘', '๙'); - } - - public function number() - { - return '352'; - } - - public function unicodeName() - { - return 'Thai'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTibt.php b/vendor/fisharebest/localization/src/Script/ScriptTibt.php deleted file mode 100644 index a1465bd7c5..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTibt.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTibt - Representation of the Tibetan script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTibt extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tibt'; - } - - public function numerals() - { - return array('༠', '༡', '༢', '༣', '༤', '༥', '༦', '༧', '༨', '༩'); - } - - public function number() - { - return '330'; - } - - public function unicodeName() - { - return 'Tibetan'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptTirh.php b/vendor/fisharebest/localization/src/Script/ScriptTirh.php deleted file mode 100644 index f05cd53efb..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptTirh.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptTirh - Representation of the Tirhuta script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptTirh extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Tirh'; - } - - public function number() - { - return '326'; - } - - public function unicodeName() - { - return 'Tirhuta'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptUgar.php b/vendor/fisharebest/localization/src/Script/ScriptUgar.php deleted file mode 100644 index 8b10e11fa7..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptUgar.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptUgar - Representation of the Ugaritic script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptUgar extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Ugar'; - } - - public function number() - { - return '040'; - } - - public function unicodeName() - { - return 'Ugaritic'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptVaii.php b/vendor/fisharebest/localization/src/Script/ScriptVaii.php deleted file mode 100644 index aeffecb17f..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptVaii.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptVaii - Representation of the Vai script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptVaii extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Vaii'; - } - - public function numerals() - { - return array('꘠', '꘡', '꘢', '꘣', '꘤', '꘥', '꘦', '꘧', '꘨', '꘩'); - } - - public function number() - { - return '470'; - } - - public function unicodeName() - { - return 'Vai'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptVisp.php b/vendor/fisharebest/localization/src/Script/ScriptVisp.php deleted file mode 100644 index e45379411c..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptVisp.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptVisp - Representation of the Visible Speech script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptVisp extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Visp'; - } - - public function number() - { - return '280'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptWara.php b/vendor/fisharebest/localization/src/Script/ScriptWara.php deleted file mode 100644 index 405455b28c..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptWara.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptWara - Representation of the Warang Citi (Varang Kshiti) script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptWara extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Wara'; - } - - public function number() - { - return '262'; - } - - public function unicodeName() - { - return 'Warang_Citi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptWcho.php b/vendor/fisharebest/localization/src/Script/ScriptWcho.php deleted file mode 100644 index 40dcc291f8..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptWcho.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptWara - Representation of the Wancho script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptWcho extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Wcho'; - } - - public function number() - { - return '283'; - } - - public function unicodeName() - { - return 'Wancho'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptWole.php b/vendor/fisharebest/localization/src/Script/ScriptWole.php deleted file mode 100644 index f39ac74407..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptWole.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptWole - Representation of the Woleai script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptWole extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Wole'; - } - - public function number() - { - return '480'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptXpeo.php b/vendor/fisharebest/localization/src/Script/ScriptXpeo.php deleted file mode 100644 index 128b274044..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptXpeo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptXpeo - Representation of the Old Persian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptXpeo extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Xpeo'; - } - - public function number() - { - return '030'; - } - - public function unicodeName() - { - return 'Old_Persian'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptXsux.php b/vendor/fisharebest/localization/src/Script/ScriptXsux.php deleted file mode 100644 index 6f38e278f9..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptXsux.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptXsux - Representation of the Cuneiform, Sumero-Akkadian script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptXsux extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Xsux'; - } - - public function number() - { - return '020'; - } - - public function unicodeName() - { - return 'Cuneiform'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptYiii.php b/vendor/fisharebest/localization/src/Script/ScriptYiii.php deleted file mode 100644 index a2c3e854d5..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptYiii.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptYiii - Representation of the Yi script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptYiii extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Yiii'; - } - - public function number() - { - return '460'; - } - - public function unicodeName() - { - return 'Yi'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZanb.php b/vendor/fisharebest/localization/src/Script/ScriptZanb.php deleted file mode 100644 index 5ec90d3fc6..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZanb.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptWara - Representation of the Zanabazar Square script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZanb extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zanb'; - } - - public function number() - { - return '339'; - } - - public function unicodeName() - { - return 'Zanabazar_Square'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZinh.php b/vendor/fisharebest/localization/src/Script/ScriptZinh.php deleted file mode 100644 index c0ae30aacb..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZinh.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZinh - Representation of the Code for inherited script script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZinh extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zinh'; - } - - public function number() - { - return '994'; - } - - public function unicodeName() - { - return 'Inherited'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZmth.php b/vendor/fisharebest/localization/src/Script/ScriptZmth.php deleted file mode 100644 index 035f0ff9fb..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZmth.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZmth - Representation of the Mathematical notation script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZmth extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zmth'; - } - - public function number() - { - return '995'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZsye.php b/vendor/fisharebest/localization/src/Script/ScriptZsye.php deleted file mode 100644 index 56e06b9b4b..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZsye.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZsye - Representation of the Zsye script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZsye extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zsye'; - } - - public function number() - { - return '993'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZsym.php b/vendor/fisharebest/localization/src/Script/ScriptZsym.php deleted file mode 100644 index d4d7fa7adc..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZsym.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZsym - Representation of the Symbols script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZsym extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zsym'; - } - - public function number() - { - return '996'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZxxx.php b/vendor/fisharebest/localization/src/Script/ScriptZxxx.php deleted file mode 100644 index 0ece8ee986..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZxxx.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZxxx - Representation of the Code for unwritten documents script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZxxx extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zxxx'; - } - - public function number() - { - return '997'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZyyy.php b/vendor/fisharebest/localization/src/Script/ScriptZyyy.php deleted file mode 100644 index be68e4eb10..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZyyy.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZyyy - Representation of the Code for undetermined script script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZyyy extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zyyy'; - } - - public function number() - { - return '998'; - } - - public function unicodeName() - { - return 'Common'; - } -} diff --git a/vendor/fisharebest/localization/src/Script/ScriptZzzz.php b/vendor/fisharebest/localization/src/Script/ScriptZzzz.php deleted file mode 100644 index 79c4fa980a..0000000000 --- a/vendor/fisharebest/localization/src/Script/ScriptZzzz.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Script; - -/** - * Class ScriptZzzz - Representation of the Code for uncoded script script. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class ScriptZzzz extends AbstractScript implements ScriptInterface -{ - public function code() - { - return 'Zzzz'; - } - - public function number() - { - return '999'; - } - - public function unicodeName() - { - return 'Unknown'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/AbstractTerritory.php b/vendor/fisharebest/localization/src/Territory/AbstractTerritory.php deleted file mode 100644 index e5599f3527..0000000000 --- a/vendor/fisharebest/localization/src/Territory/AbstractTerritory.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of a geographic area. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -abstract class AbstractTerritory -{ - /** - * @return int - */ - public function firstDay() - { - return 1; - } - - /** - * @return string - */ - public function measurementSystem() - { - return 'metric'; - } - - /** - * @return string - */ - public function paperSize() - { - return 'A4'; - } - - /** - * @return int - */ - public function weekendStart() - { - return 6; - } - - /** - * @return int - */ - public function weekendEnd() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory001.php b/vendor/fisharebest/localization/src/Territory/Territory001.php deleted file mode 100644 index 1c8653b7a8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory001.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 001 - World. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory001 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '001'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory002.php b/vendor/fisharebest/localization/src/Territory/Territory002.php deleted file mode 100644 index b4658a9c4b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory002.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 002 - Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory002 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '002'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory003.php b/vendor/fisharebest/localization/src/Territory/Territory003.php deleted file mode 100644 index e464d8bd1f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory003.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 003 - North America. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory003 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '003'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory005.php b/vendor/fisharebest/localization/src/Territory/Territory005.php deleted file mode 100644 index ecc68ee989..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory005.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 005 - South America. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory005 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '005'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory009.php b/vendor/fisharebest/localization/src/Territory/Territory009.php deleted file mode 100644 index ca312a891e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory009.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 009 - Oceania. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory009 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '009'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory011.php b/vendor/fisharebest/localization/src/Territory/Territory011.php deleted file mode 100644 index 1f391b72a6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory011.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 011 - Western Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory011 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '011'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory013.php b/vendor/fisharebest/localization/src/Territory/Territory013.php deleted file mode 100644 index 821b565cec..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory013.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 013 - Central America. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory013 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '013'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory014.php b/vendor/fisharebest/localization/src/Territory/Territory014.php deleted file mode 100644 index d1372a8470..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory014.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 014 - Eastern Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory014 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '014'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory015.php b/vendor/fisharebest/localization/src/Territory/Territory015.php deleted file mode 100644 index 5a8b64794d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory015.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 015 - Northern Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory015 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '015'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory017.php b/vendor/fisharebest/localization/src/Territory/Territory017.php deleted file mode 100644 index 172e4bac6e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory017.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 017 - Middle Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory017 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '017'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory018.php b/vendor/fisharebest/localization/src/Territory/Territory018.php deleted file mode 100644 index ab40ac9547..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory018.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 018 - Southern Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory018 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '018'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory019.php b/vendor/fisharebest/localization/src/Territory/Territory019.php deleted file mode 100644 index 54cfe2a52a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory019.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 019 - Americas. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory019 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '019'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory021.php b/vendor/fisharebest/localization/src/Territory/Territory021.php deleted file mode 100644 index 08b2fc52d0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory021.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 021 - Northern America. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory021 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '021'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory029.php b/vendor/fisharebest/localization/src/Territory/Territory029.php deleted file mode 100644 index e4c109296e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory029.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 029 - Caribbean. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory029 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '029'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory030.php b/vendor/fisharebest/localization/src/Territory/Territory030.php deleted file mode 100644 index 534ce2b6f7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory030.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 030 - Eastern Asia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory030 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '030'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory034.php b/vendor/fisharebest/localization/src/Territory/Territory034.php deleted file mode 100644 index 5d5082e5a0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory034.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 034 - Southern Asia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory034 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '034'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory035.php b/vendor/fisharebest/localization/src/Territory/Territory035.php deleted file mode 100644 index 6b9a518f46..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory035.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 035 - South-Eastern Asia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory035 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '035'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory039.php b/vendor/fisharebest/localization/src/Territory/Territory039.php deleted file mode 100644 index 8a951c8bbc..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory039.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 039 - Southern Europe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory039 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '039'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory053.php b/vendor/fisharebest/localization/src/Territory/Territory053.php deleted file mode 100644 index e045548302..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory053.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 053 - Australia and New Zealand. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory053 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '053'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory054.php b/vendor/fisharebest/localization/src/Territory/Territory054.php deleted file mode 100644 index 3b7de765c3..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory054.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 054 - Melanesia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory054 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '054'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory057.php b/vendor/fisharebest/localization/src/Territory/Territory057.php deleted file mode 100644 index b8d2987c5b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory057.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 057 - Micronesia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory057 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '057'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory061.php b/vendor/fisharebest/localization/src/Territory/Territory061.php deleted file mode 100644 index 83556bfbd4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory061.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 061 - Polynesia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory061 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '061'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory142.php b/vendor/fisharebest/localization/src/Territory/Territory142.php deleted file mode 100644 index 98e0cc7cf1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory142.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 142 - Asia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory142 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '142'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory143.php b/vendor/fisharebest/localization/src/Territory/Territory143.php deleted file mode 100644 index 1807cfb21a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory143.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 143 - Central Asia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory143 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '143'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory145.php b/vendor/fisharebest/localization/src/Territory/Territory145.php deleted file mode 100644 index c362a6bf5f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory145.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 145 - Western Asia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory145 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '145'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory150.php b/vendor/fisharebest/localization/src/Territory/Territory150.php deleted file mode 100644 index 914a2bac81..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory150.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 150 - Europe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory150 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '150'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory151.php b/vendor/fisharebest/localization/src/Territory/Territory151.php deleted file mode 100644 index da6e87626b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory151.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 151 - Eastern Europe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory151 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '151'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory154.php b/vendor/fisharebest/localization/src/Territory/Territory154.php deleted file mode 100644 index 16c5c335d8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory154.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 154 - Northern Europe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory154 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '154'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory155.php b/vendor/fisharebest/localization/src/Territory/Territory155.php deleted file mode 100644 index c881e2761e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory155.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 155 - Western Europe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory155 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '155'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory202.php b/vendor/fisharebest/localization/src/Territory/Territory202.php deleted file mode 100644 index 531f1ef71f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory202.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 202 - Sub-Saharan Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory202 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '202'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/Territory419.php b/vendor/fisharebest/localization/src/Territory/Territory419.php deleted file mode 100644 index 337fe3027f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/Territory419.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory 419 - Latin America and the Caribbean. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Territory419 extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return '419'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAc.php b/vendor/fisharebest/localization/src/Territory/TerritoryAc.php deleted file mode 100644 index e1073c3646..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AC - Ascension Island. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAd.php b/vendor/fisharebest/localization/src/Territory/TerritoryAd.php deleted file mode 100644 index 6e3131f011..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AD - Andorra. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAe.php b/vendor/fisharebest/localization/src/Territory/TerritoryAe.php deleted file mode 100644 index 5bd4bc4bef..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAe.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AE - United Arab Emirates. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AE'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAf.php b/vendor/fisharebest/localization/src/Territory/TerritoryAf.php deleted file mode 100644 index b82cdca7ff..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAf.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AF - Afghanistan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AF'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 4; - } - - public function weekendEnd() - { - return 5; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAg.php b/vendor/fisharebest/localization/src/Territory/TerritoryAg.php deleted file mode 100644 index 9f02d112ec..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAg.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AG - Antigua and Barbuda. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AG'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAi.php b/vendor/fisharebest/localization/src/Territory/TerritoryAi.php deleted file mode 100644 index bfad06917a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AI - Anguilla. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAl.php b/vendor/fisharebest/localization/src/Territory/TerritoryAl.php deleted file mode 100644 index a88c5144fd..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AL - Albania. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AL'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAm.php b/vendor/fisharebest/localization/src/Territory/TerritoryAm.php deleted file mode 100644 index a7855f2b7b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AM - Armenia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAn.php b/vendor/fisharebest/localization/src/Territory/TerritoryAn.php deleted file mode 100644 index 22567f3a61..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AN - Netherlands Antilles. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAo.php b/vendor/fisharebest/localization/src/Territory/TerritoryAo.php deleted file mode 100644 index 4fd99efa9b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AO - Angola. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAq.php b/vendor/fisharebest/localization/src/Territory/TerritoryAq.php deleted file mode 100644 index a5474eb730..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAq.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AQ - Antarctica. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAq extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AQ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAr.php b/vendor/fisharebest/localization/src/Territory/TerritoryAr.php deleted file mode 100644 index ffd4f9b130..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAr.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AR - Argentina. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AR'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAs.php b/vendor/fisharebest/localization/src/Territory/TerritoryAs.php deleted file mode 100644 index 48fd974fe2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAs.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AS - American Samoa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AS'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAt.php b/vendor/fisharebest/localization/src/Territory/TerritoryAt.php deleted file mode 100644 index 40c10f6db4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AT - Austria. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AT'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAu.php b/vendor/fisharebest/localization/src/Territory/TerritoryAu.php deleted file mode 100644 index 5c1d2292f8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAu.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AU - Australia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AU'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAw.php b/vendor/fisharebest/localization/src/Territory/TerritoryAw.php deleted file mode 100644 index e9f9435802..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAw.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AW - Aruba. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AW'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAx.php b/vendor/fisharebest/localization/src/Territory/TerritoryAx.php deleted file mode 100644 index 020c9a5aa2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAx.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AX - Åland Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAx extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AX'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryAz.php b/vendor/fisharebest/localization/src/Territory/TerritoryAz.php deleted file mode 100644 index 0e5f734c6a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryAz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory AZ - Azerbaijan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryAz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'AZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBa.php b/vendor/fisharebest/localization/src/Territory/TerritoryBa.php deleted file mode 100644 index 28bc5bf1c7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BA - Bosnia and Herzegovina. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBb.php b/vendor/fisharebest/localization/src/Territory/TerritoryBb.php deleted file mode 100644 index 17937d14d5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBb.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BB - Barbados. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBb extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BB'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBd.php b/vendor/fisharebest/localization/src/Territory/TerritoryBd.php deleted file mode 100644 index 8c7e55f0ff..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBd.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BD - Bangladesh. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BD'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBe.php b/vendor/fisharebest/localization/src/Territory/TerritoryBe.php deleted file mode 100644 index 1a833d3088..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BE - Belgium. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBf.php b/vendor/fisharebest/localization/src/Territory/TerritoryBf.php deleted file mode 100644 index 16e40dbd17..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BF - Burkina Faso. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBg.php b/vendor/fisharebest/localization/src/Territory/TerritoryBg.php deleted file mode 100644 index 01fbc2635d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BG - Bulgaria. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBh.php b/vendor/fisharebest/localization/src/Territory/TerritoryBh.php deleted file mode 100644 index f87592750c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBh.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BH - Bahrain. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BH'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBi.php b/vendor/fisharebest/localization/src/Territory/TerritoryBi.php deleted file mode 100644 index 1cf564210e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BI - Burundi. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBj.php b/vendor/fisharebest/localization/src/Territory/TerritoryBj.php deleted file mode 100644 index aeb90a1483..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBj.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BJ - Benin. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBj extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BJ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBl.php b/vendor/fisharebest/localization/src/Territory/TerritoryBl.php deleted file mode 100644 index d09bcfb15d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BL - Saint Barthélemy. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BL'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBm.php b/vendor/fisharebest/localization/src/Territory/TerritoryBm.php deleted file mode 100644 index 65a120bc42..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BM - Bermuda. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBn.php b/vendor/fisharebest/localization/src/Territory/TerritoryBn.php deleted file mode 100644 index 0e0cec2e9d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BN - Brunei Darussalam. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBo.php b/vendor/fisharebest/localization/src/Territory/TerritoryBo.php deleted file mode 100644 index ea0405e4c4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BO - Bolivia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBq.php b/vendor/fisharebest/localization/src/Territory/TerritoryBq.php deleted file mode 100644 index 66be49ae76..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBq.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BQ - Bonaire, Sint Eustatius and Saba. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBq extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BQ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBr.php b/vendor/fisharebest/localization/src/Territory/TerritoryBr.php deleted file mode 100644 index d1d85f31f6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBr.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BR - Brazil. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BR'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBs.php b/vendor/fisharebest/localization/src/Territory/TerritoryBs.php deleted file mode 100644 index 440a1eef23..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBs.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BS - Bahamas. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BS'; - } - - public function firstDay() - { - return 0; - } - - public function measurementSystem() - { - return 'US'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBt.php b/vendor/fisharebest/localization/src/Territory/TerritoryBt.php deleted file mode 100644 index 92b4ea59ce..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBt.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BT - Bhutan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BT'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBu.php b/vendor/fisharebest/localization/src/Territory/TerritoryBu.php deleted file mode 100644 index cf82d1cf07..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BU - Burma. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBv.php b/vendor/fisharebest/localization/src/Territory/TerritoryBv.php deleted file mode 100644 index 6da9f26454..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBv.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BV - Bouvet Island. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBv extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BV'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBw.php b/vendor/fisharebest/localization/src/Territory/TerritoryBw.php deleted file mode 100644 index 6c86db4766..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBw.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BW - Botswana. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BW'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBy.php b/vendor/fisharebest/localization/src/Territory/TerritoryBy.php deleted file mode 100644 index 2b7d521db4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBy.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BY - Belarus. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BY'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryBz.php b/vendor/fisharebest/localization/src/Territory/TerritoryBz.php deleted file mode 100644 index 933da99f87..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryBz.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory BZ - Belize. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryBz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'BZ'; - } - - public function firstDay() - { - return 0; - } - - public function measurementSystem() - { - return 'US'; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCa.php b/vendor/fisharebest/localization/src/Territory/TerritoryCa.php deleted file mode 100644 index 4a8da2c2e2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCa.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CA - Canada. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CA'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCc.php b/vendor/fisharebest/localization/src/Territory/TerritoryCc.php deleted file mode 100644 index 007e48b60a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CC - Cocos (Keeling) Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCd.php b/vendor/fisharebest/localization/src/Territory/TerritoryCd.php deleted file mode 100644 index 3f64967141..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CD - The Democratic Republic of the Congo. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCf.php b/vendor/fisharebest/localization/src/Territory/TerritoryCf.php deleted file mode 100644 index a04a939161..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CF - Central African Republic. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCg.php b/vendor/fisharebest/localization/src/Territory/TerritoryCg.php deleted file mode 100644 index 6e4c116ad7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CG - Congo. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCh.php b/vendor/fisharebest/localization/src/Territory/TerritoryCh.php deleted file mode 100644 index 933bebea54..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCh.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CH - Switzerland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CH'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCi.php b/vendor/fisharebest/localization/src/Territory/TerritoryCi.php deleted file mode 100644 index 893af585a4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CI - Côte d'Ivoire. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCk.php b/vendor/fisharebest/localization/src/Territory/TerritoryCk.php deleted file mode 100644 index 1c3b8179da..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CK - Cook Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCl.php b/vendor/fisharebest/localization/src/Territory/TerritoryCl.php deleted file mode 100644 index 0cc2fccf08..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCl.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CL - Chile. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CL'; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCm.php b/vendor/fisharebest/localization/src/Territory/TerritoryCm.php deleted file mode 100644 index 95df5997c4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CM - Cameroon. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCn.php b/vendor/fisharebest/localization/src/Territory/TerritoryCn.php deleted file mode 100644 index 9b0eb658a8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCn.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CN - China. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CN'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCo.php b/vendor/fisharebest/localization/src/Territory/TerritoryCo.php deleted file mode 100644 index f35efc8129..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCo.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CO - Colombia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CO'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCp.php b/vendor/fisharebest/localization/src/Territory/TerritoryCp.php deleted file mode 100644 index cb42deef40..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCp.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CP - Clipperton Island. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CP'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCr.php b/vendor/fisharebest/localization/src/Territory/TerritoryCr.php deleted file mode 100644 index 5f84d291ae..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCr.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CR - Costa Rica. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CR'; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCs.php b/vendor/fisharebest/localization/src/Territory/TerritoryCs.php deleted file mode 100644 index ad63e82150..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CS - Serbia and Montenegro. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCu.php b/vendor/fisharebest/localization/src/Territory/TerritoryCu.php deleted file mode 100644 index 2f413d047e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CU - Cuba. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCv.php b/vendor/fisharebest/localization/src/Territory/TerritoryCv.php deleted file mode 100644 index c94496450e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCv.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CV - Cabo Verde. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCv extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CV'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCw.php b/vendor/fisharebest/localization/src/Territory/TerritoryCw.php deleted file mode 100644 index 4e79fd0831..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCw.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CW - Curaçao. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CW'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCx.php b/vendor/fisharebest/localization/src/Territory/TerritoryCx.php deleted file mode 100644 index 6c202d58e1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCx.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CX - Christmas Island. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCx extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CX'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCy.php b/vendor/fisharebest/localization/src/Territory/TerritoryCy.php deleted file mode 100644 index 450de64818..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCy.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CY - Cyprus. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CY'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryCz.php b/vendor/fisharebest/localization/src/Territory/TerritoryCz.php deleted file mode 100644 index 764bfda35a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryCz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory CZ - Czech Republic. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryCz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'CZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDd.php b/vendor/fisharebest/localization/src/Territory/TerritoryDd.php deleted file mode 100644 index 02e3a50159..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DD - German Democratic Republic. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDe.php b/vendor/fisharebest/localization/src/Territory/TerritoryDe.php deleted file mode 100644 index 2a92197cde..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DE - Germany. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDg.php b/vendor/fisharebest/localization/src/Territory/TerritoryDg.php deleted file mode 100644 index a5dd52f8f4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DG - Diego Garcia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDj.php b/vendor/fisharebest/localization/src/Territory/TerritoryDj.php deleted file mode 100644 index 905b5739db..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDj.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DJ - Djibouti. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDj extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DJ'; - } - - public function firstDay() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDk.php b/vendor/fisharebest/localization/src/Territory/TerritoryDk.php deleted file mode 100644 index b6345777b1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DK - Denmark. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDm.php b/vendor/fisharebest/localization/src/Territory/TerritoryDm.php deleted file mode 100644 index 48999565c9..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDm.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DM - Dominica. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DM'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDo.php b/vendor/fisharebest/localization/src/Territory/TerritoryDo.php deleted file mode 100644 index bf1d672aed..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDo.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DO - Dominican Republic. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DO'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryDz.php b/vendor/fisharebest/localization/src/Territory/TerritoryDz.php deleted file mode 100644 index 8019a9ffe6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryDz.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory DZ - Algeria. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryDz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'DZ'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEa.php b/vendor/fisharebest/localization/src/Territory/TerritoryEa.php deleted file mode 100644 index 74b9d3050d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EA - Ceuta, Melilla. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEc.php b/vendor/fisharebest/localization/src/Territory/TerritoryEc.php deleted file mode 100644 index 2d792cf399..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EC - Ecuador. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEe.php b/vendor/fisharebest/localization/src/Territory/TerritoryEe.php deleted file mode 100644 index b72bdab8a6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EE - Estonia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEg.php b/vendor/fisharebest/localization/src/Territory/TerritoryEg.php deleted file mode 100644 index a60a2dc5dc..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEg.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EG - Egypt. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EG'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEh.php b/vendor/fisharebest/localization/src/Territory/TerritoryEh.php deleted file mode 100644 index 40154e4309..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEh.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EH - Western Sahara. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EH'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEr.php b/vendor/fisharebest/localization/src/Territory/TerritoryEr.php deleted file mode 100644 index 66648bdce5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEr.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ER - Eritrea. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ER'; - } - - public function firstDay() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEs.php b/vendor/fisharebest/localization/src/Territory/TerritoryEs.php deleted file mode 100644 index 6f1582e55a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ES - Spain. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ES'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEt.php b/vendor/fisharebest/localization/src/Territory/TerritoryEt.php deleted file mode 100644 index 5fb9016ec7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEt.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ET - Ethiopia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ET'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEu.php b/vendor/fisharebest/localization/src/Territory/TerritoryEu.php deleted file mode 100644 index 0b2eb2c852..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EU - European Union. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryEz.php b/vendor/fisharebest/localization/src/Territory/TerritoryEz.php deleted file mode 100644 index 432f9d2c13..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryEz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory EZ - Eurozone. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryEz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'EZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFi.php b/vendor/fisharebest/localization/src/Territory/TerritoryFi.php deleted file mode 100644 index ce79b96b67..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FI - Finland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFj.php b/vendor/fisharebest/localization/src/Territory/TerritoryFj.php deleted file mode 100644 index efe2890f4a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFj.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FJ - Fiji. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFj extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FJ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFk.php b/vendor/fisharebest/localization/src/Territory/TerritoryFk.php deleted file mode 100644 index 3adc696401..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FK - Falkland Islands (Malvinas). - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFm.php b/vendor/fisharebest/localization/src/Territory/TerritoryFm.php deleted file mode 100644 index 64a35c737e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FM - Federated States of Micronesia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFo.php b/vendor/fisharebest/localization/src/Territory/TerritoryFo.php deleted file mode 100644 index 09960c4a9d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FO - Faroe Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFr.php b/vendor/fisharebest/localization/src/Territory/TerritoryFr.php deleted file mode 100644 index e6d888fc56..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FR - France. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryFx.php b/vendor/fisharebest/localization/src/Territory/TerritoryFx.php deleted file mode 100644 index 3f90edc42a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryFx.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory FX - Metropolitan France. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryFx extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'FX'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGa.php b/vendor/fisharebest/localization/src/Territory/TerritoryGa.php deleted file mode 100644 index d309723cd6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GA - Gabon. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGb.php b/vendor/fisharebest/localization/src/Territory/TerritoryGb.php deleted file mode 100644 index 670b1b0a43..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGb.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GB - United Kingdom. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGb extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GB'; - } - - public function measurementSystem() - { - return 'UK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGd.php b/vendor/fisharebest/localization/src/Territory/TerritoryGd.php deleted file mode 100644 index da1de41aac..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GD - Grenada. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGe.php b/vendor/fisharebest/localization/src/Territory/TerritoryGe.php deleted file mode 100644 index c71ef47a58..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GE - Georgia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGf.php b/vendor/fisharebest/localization/src/Territory/TerritoryGf.php deleted file mode 100644 index 9d5738317b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GF - French Guiana. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGg.php b/vendor/fisharebest/localization/src/Territory/TerritoryGg.php deleted file mode 100644 index f04802e2c5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GG - Guernsey. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGh.php b/vendor/fisharebest/localization/src/Territory/TerritoryGh.php deleted file mode 100644 index 3c3512c102..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGh.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GH - Ghana. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GH'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGi.php b/vendor/fisharebest/localization/src/Territory/TerritoryGi.php deleted file mode 100644 index 3c805eedd6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GI - Gibraltar. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGl.php b/vendor/fisharebest/localization/src/Territory/TerritoryGl.php deleted file mode 100644 index 6e8466286d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGl.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GL - Greenland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GL'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGm.php b/vendor/fisharebest/localization/src/Territory/TerritoryGm.php deleted file mode 100644 index 053e01610e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GM - Gambia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGn.php b/vendor/fisharebest/localization/src/Territory/TerritoryGn.php deleted file mode 100644 index 93ba23ab55..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GN - Guinea. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGp.php b/vendor/fisharebest/localization/src/Territory/TerritoryGp.php deleted file mode 100644 index 1ad9b8b7ca..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGp.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GP - Guadeloupe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GP'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGq.php b/vendor/fisharebest/localization/src/Territory/TerritoryGq.php deleted file mode 100644 index e6d18b67f5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGq.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GQ - Equatorial Guinea. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGq extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GQ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGr.php b/vendor/fisharebest/localization/src/Territory/TerritoryGr.php deleted file mode 100644 index 45ef6351f7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GR - Greece. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGs.php b/vendor/fisharebest/localization/src/Territory/TerritoryGs.php deleted file mode 100644 index 10da664d8a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GS - South Georgia and the South Sandwich Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGt.php b/vendor/fisharebest/localization/src/Territory/TerritoryGt.php deleted file mode 100644 index aafee3a915..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGt.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GT - Guatemala. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GT'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGu.php b/vendor/fisharebest/localization/src/Territory/TerritoryGu.php deleted file mode 100644 index 99677c1a55..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGu.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GU - Guam. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GU'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGw.php b/vendor/fisharebest/localization/src/Territory/TerritoryGw.php deleted file mode 100644 index 142c26ec1a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGw.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GW - Guinea-Bissau. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GW'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryGy.php b/vendor/fisharebest/localization/src/Territory/TerritoryGy.php deleted file mode 100644 index cf68861bb2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryGy.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory GY - Guyana. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryGy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'GY'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryHk.php b/vendor/fisharebest/localization/src/Territory/TerritoryHk.php deleted file mode 100644 index 5e86bb3749..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryHk.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory HK - Hong Kong. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryHk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'HK'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryHm.php b/vendor/fisharebest/localization/src/Territory/TerritoryHm.php deleted file mode 100644 index 3f2cfa6453..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryHm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory HM - Heard Island and McDonald Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryHm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'HM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryHn.php b/vendor/fisharebest/localization/src/Territory/TerritoryHn.php deleted file mode 100644 index 356bd43d26..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryHn.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory HN - Honduras. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryHn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'HN'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryHr.php b/vendor/fisharebest/localization/src/Territory/TerritoryHr.php deleted file mode 100644 index 842ade3659..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryHr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory HR - Croatia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryHr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'HR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryHt.php b/vendor/fisharebest/localization/src/Territory/TerritoryHt.php deleted file mode 100644 index 9908c59f64..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryHt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory HT - Haiti. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryHt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'HT'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryHu.php b/vendor/fisharebest/localization/src/Territory/TerritoryHu.php deleted file mode 100644 index 4f62262bb6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryHu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory HU - Hungary. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryHu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'HU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIc.php b/vendor/fisharebest/localization/src/Territory/TerritoryIc.php deleted file mode 100644 index 7333cd9ff0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IC - Canary Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryId.php b/vendor/fisharebest/localization/src/Territory/TerritoryId.php deleted file mode 100644 index 82b54d4b2c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryId.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ID - Indonesia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryId extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ID'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIe.php b/vendor/fisharebest/localization/src/Territory/TerritoryIe.php deleted file mode 100644 index bfc75ee0d2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IE - Ireland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIl.php b/vendor/fisharebest/localization/src/Territory/TerritoryIl.php deleted file mode 100644 index 2b8d9ce490..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIl.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IL - Israel. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IL'; - } - - public function firstDay() - { - return 0; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIm.php b/vendor/fisharebest/localization/src/Territory/TerritoryIm.php deleted file mode 100644 index cf70d0257c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IM - Isle of Man. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIn.php b/vendor/fisharebest/localization/src/Territory/TerritoryIn.php deleted file mode 100644 index f1a762d35d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIn.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IN - India. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IN'; - } - - public function firstDay() - { - return 0; - } - - public function weekendStart() - { - return 0; - } - - public function weekendEnd() - { - return 1; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryInterface.php b/vendor/fisharebest/localization/src/Territory/TerritoryInterface.php deleted file mode 100644 index c50b23ebc2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryInterface.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Interface TerritoryInterface - Representation of a geographic area. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -interface TerritoryInterface -{ - /** - * The ISO639 or M.49 code for this territory. - * - * @return string - */ - public function code(); - - /** - * What is the first day of the week? - * 0 = Sunday - * 1 = Monday - * etc. - * - * @return int - */ - public function firstDay(); - - /** - * Does this territory prefer 'metric', 'UK' or 'US' measurements. - * - * @return string - */ - public function measurementSystem(); - - /** - * Does this territory prefer 'A4' or 'US-Letter' paper. - * - * @return string - */ - public function paperSize(); - - /** - * What is the first day of the weekend? - * 0 = Sunday - * 1 = Monday - * etc. - * - * @return int - */ - public function weekendStart(); - - /** - * What is the last day of the weekend? - * 0 = Sunday - * 1 = Monday - * etc. - * - * @return int - */ - public function weekendEnd(); -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIo.php b/vendor/fisharebest/localization/src/Territory/TerritoryIo.php deleted file mode 100644 index 81377f9159..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IO - British Indian Ocean AbstractTerritory. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIq.php b/vendor/fisharebest/localization/src/Territory/TerritoryIq.php deleted file mode 100644 index 468b2180d8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIq.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IQ - Iraq. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIq extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IQ'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIr.php b/vendor/fisharebest/localization/src/Territory/TerritoryIr.php deleted file mode 100644 index 3e425fd0ff..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIr.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IR - Islamic Republic of Iran. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IR'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 5; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIs.php b/vendor/fisharebest/localization/src/Territory/TerritoryIs.php deleted file mode 100644 index ceda42538f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IS - Iceland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryIt.php b/vendor/fisharebest/localization/src/Territory/TerritoryIt.php deleted file mode 100644 index 80aaf9fb77..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryIt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory IT - Italy. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryIt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'IT'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryJe.php b/vendor/fisharebest/localization/src/Territory/TerritoryJe.php deleted file mode 100644 index 18b1463334..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryJe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory JE - Jersey. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryJe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'JE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryJm.php b/vendor/fisharebest/localization/src/Territory/TerritoryJm.php deleted file mode 100644 index b9e7964bb9..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryJm.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory JM - Jamaica. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryJm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'JM'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryJo.php b/vendor/fisharebest/localization/src/Territory/TerritoryJo.php deleted file mode 100644 index 0576c179be..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryJo.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory JO - Jordan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryJo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'JO'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryJp.php b/vendor/fisharebest/localization/src/Territory/TerritoryJp.php deleted file mode 100644 index 4a3415a656..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryJp.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory JP - Japan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryJp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'JP'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKe.php b/vendor/fisharebest/localization/src/Territory/TerritoryKe.php deleted file mode 100644 index 701dff081d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKe.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KE - Kenya. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KE'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKg.php b/vendor/fisharebest/localization/src/Territory/TerritoryKg.php deleted file mode 100644 index 2a20581db2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KG - Kyrgyzstan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKh.php b/vendor/fisharebest/localization/src/Territory/TerritoryKh.php deleted file mode 100644 index f0f9058f01..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKh.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KH - Cambodia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KH'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKi.php b/vendor/fisharebest/localization/src/Territory/TerritoryKi.php deleted file mode 100644 index ec790795c4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KI - Kiribati. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKm.php b/vendor/fisharebest/localization/src/Territory/TerritoryKm.php deleted file mode 100644 index 43fe6600ed..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KM - Comoros. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKn.php b/vendor/fisharebest/localization/src/Territory/TerritoryKn.php deleted file mode 100644 index b9b88c829d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KN - Saint Kitts and Nevis. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKp.php b/vendor/fisharebest/localization/src/Territory/TerritoryKp.php deleted file mode 100644 index c2b66fc1f2..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKp.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KP - Democratic People's Republic of Korea. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KP'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKr.php b/vendor/fisharebest/localization/src/Territory/TerritoryKr.php deleted file mode 100644 index f496843d4b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKr.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KR - Republic of Korea. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KR'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKw.php b/vendor/fisharebest/localization/src/Territory/TerritoryKw.php deleted file mode 100644 index 6124518adf..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKw.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KW - Kuwait. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KW'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKy.php b/vendor/fisharebest/localization/src/Territory/TerritoryKy.php deleted file mode 100644 index 477a6bcc98..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKy.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KY - Cayman Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KY'; - } - - public function measurementSystem() - { - return 'US'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryKz.php b/vendor/fisharebest/localization/src/Territory/TerritoryKz.php deleted file mode 100644 index a719881e97..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryKz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory KZ - Kazakhstan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryKz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'KZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLa.php b/vendor/fisharebest/localization/src/Territory/TerritoryLa.php deleted file mode 100644 index 8a8e7ee4d3..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLa.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LA - Lao People's Democratic Republic. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LA'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLb.php b/vendor/fisharebest/localization/src/Territory/TerritoryLb.php deleted file mode 100644 index c545b66b8f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLb.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LB - Lebanon. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLb extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LB'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLc.php b/vendor/fisharebest/localization/src/Territory/TerritoryLc.php deleted file mode 100644 index d4f1cc1269..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LC - Saint Lucia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLi.php b/vendor/fisharebest/localization/src/Territory/TerritoryLi.php deleted file mode 100644 index 16853c6879..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LI - Liechtenstein. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLk.php b/vendor/fisharebest/localization/src/Territory/TerritoryLk.php deleted file mode 100644 index 600a1e8bc5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LK - Sri Lanka. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLr.php b/vendor/fisharebest/localization/src/Territory/TerritoryLr.php deleted file mode 100644 index 2b913ca35e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLr.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LR - Liberia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LR'; - } - - public function measurementSystem() - { - return 'US'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLs.php b/vendor/fisharebest/localization/src/Territory/TerritoryLs.php deleted file mode 100644 index 62a8d9018e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LS - Lesotho. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLt.php b/vendor/fisharebest/localization/src/Territory/TerritoryLt.php deleted file mode 100644 index 46468721ac..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LT - Lithuania. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LT'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLu.php b/vendor/fisharebest/localization/src/Territory/TerritoryLu.php deleted file mode 100644 index 02d2e4dc3a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LU - Luxembourg. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLv.php b/vendor/fisharebest/localization/src/Territory/TerritoryLv.php deleted file mode 100644 index 629b27ad47..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLv.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LV - Latvia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLv extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LV'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryLy.php b/vendor/fisharebest/localization/src/Territory/TerritoryLy.php deleted file mode 100644 index c5a4d83bca..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryLy.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory LY - Libya. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryLy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'LY'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMa.php b/vendor/fisharebest/localization/src/Territory/TerritoryMa.php deleted file mode 100644 index d97d140e08..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMa.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MA - Morocco. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MA'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMc.php b/vendor/fisharebest/localization/src/Territory/TerritoryMc.php deleted file mode 100644 index 76376a242a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MC - Monaco. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMd.php b/vendor/fisharebest/localization/src/Territory/TerritoryMd.php deleted file mode 100644 index db740f64c3..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MD - Moldova. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMe.php b/vendor/fisharebest/localization/src/Territory/TerritoryMe.php deleted file mode 100644 index 936abf21fb..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ME - Montenegro. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ME'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMf.php b/vendor/fisharebest/localization/src/Territory/TerritoryMf.php deleted file mode 100644 index 181371981a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MF - Saint Martin (French part). - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMg.php b/vendor/fisharebest/localization/src/Territory/TerritoryMg.php deleted file mode 100644 index 151c3a8aa8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MG - Madagascar. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMh.php b/vendor/fisharebest/localization/src/Territory/TerritoryMh.php deleted file mode 100644 index 453af68d7b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMh.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MH - Marshall Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MH'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMk.php b/vendor/fisharebest/localization/src/Territory/TerritoryMk.php deleted file mode 100644 index 338d91aebe..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MK - The Former Yugoslav Republic of Macedonia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMl.php b/vendor/fisharebest/localization/src/Territory/TerritoryMl.php deleted file mode 100644 index 3c335f8a2a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ML - Mali. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ML'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMm.php b/vendor/fisharebest/localization/src/Territory/TerritoryMm.php deleted file mode 100644 index 27b2cb0ee9..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMm.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MM - Myanmar. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MM'; - } - - public function firstDay() - { - return 0; - } - - public function measurementSystem() - { - return 'US'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMn.php b/vendor/fisharebest/localization/src/Territory/TerritoryMn.php deleted file mode 100644 index b05aa9c40f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MN - Mongolia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMo.php b/vendor/fisharebest/localization/src/Territory/TerritoryMo.php deleted file mode 100644 index 999839e48c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMo.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MO - Macao. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MO'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMp.php b/vendor/fisharebest/localization/src/Territory/TerritoryMp.php deleted file mode 100644 index 3bc177c97f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMp.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MP - Northern Mariana Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MP'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMq.php b/vendor/fisharebest/localization/src/Territory/TerritoryMq.php deleted file mode 100644 index 46381fa727..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMq.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MQ - Martinique. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMq extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MQ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMr.php b/vendor/fisharebest/localization/src/Territory/TerritoryMr.php deleted file mode 100644 index 46a01e0653..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MR - Mauritania. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMs.php b/vendor/fisharebest/localization/src/Territory/TerritoryMs.php deleted file mode 100644 index 3da68ba700..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MS - Montserrat. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMt.php b/vendor/fisharebest/localization/src/Territory/TerritoryMt.php deleted file mode 100644 index 90a709d5aa..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMt.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MT - Malta. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MT'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMu.php b/vendor/fisharebest/localization/src/Territory/TerritoryMu.php deleted file mode 100644 index 1bf4846642..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MU - Mauritius. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMv.php b/vendor/fisharebest/localization/src/Territory/TerritoryMv.php deleted file mode 100644 index ec1f2b927a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMv.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MV - Maldives. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMv extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MV'; - } - - public function firstDay() - { - return 5; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMw.php b/vendor/fisharebest/localization/src/Territory/TerritoryMw.php deleted file mode 100644 index 99d3babc59..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMw.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MW - Malawi. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MW'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMx.php b/vendor/fisharebest/localization/src/Territory/TerritoryMx.php deleted file mode 100644 index 5be0cdcad0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMx.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MX - Mexico. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMx extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MX'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMy.php b/vendor/fisharebest/localization/src/Territory/TerritoryMy.php deleted file mode 100644 index 987319240d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMy.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MY - Malaysia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MY'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryMz.php b/vendor/fisharebest/localization/src/Territory/TerritoryMz.php deleted file mode 100644 index fb7ecce12c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryMz.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory MZ - Mozambique. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryMz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'MZ'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNa.php b/vendor/fisharebest/localization/src/Territory/TerritoryNa.php deleted file mode 100644 index bfdeb2ee9c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NA - Namibia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNc.php b/vendor/fisharebest/localization/src/Territory/TerritoryNc.php deleted file mode 100644 index 05b74c4b42..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NC - New Caledonia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNe.php b/vendor/fisharebest/localization/src/Territory/TerritoryNe.php deleted file mode 100644 index 7c8c101d8e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NE - Niger. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNf.php b/vendor/fisharebest/localization/src/Territory/TerritoryNf.php deleted file mode 100644 index 55e017f352..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NF - Norfolk Island. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNg.php b/vendor/fisharebest/localization/src/Territory/TerritoryNg.php deleted file mode 100644 index 2fe8cac222..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNg.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NG - Nigeria. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NG'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNi.php b/vendor/fisharebest/localization/src/Territory/TerritoryNi.php deleted file mode 100644 index f85da093aa..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNi.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NI - Nicaragua. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NI'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNl.php b/vendor/fisharebest/localization/src/Territory/TerritoryNl.php deleted file mode 100644 index 2b25a4a814..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NL - Netherlands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NL'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNo.php b/vendor/fisharebest/localization/src/Territory/TerritoryNo.php deleted file mode 100644 index 74d5401e3d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NO - Norway. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNp.php b/vendor/fisharebest/localization/src/Territory/TerritoryNp.php deleted file mode 100644 index e2ef1e468f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNp.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NP - Nepal. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NP'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNr.php b/vendor/fisharebest/localization/src/Territory/TerritoryNr.php deleted file mode 100644 index c5be8597f4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NR - Nauru. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNt.php b/vendor/fisharebest/localization/src/Territory/TerritoryNt.php deleted file mode 100644 index b5ad4d00c4..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NT - Neutral Zone. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NT'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNu.php b/vendor/fisharebest/localization/src/Territory/TerritoryNu.php deleted file mode 100644 index e4338cceb1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NU - Niue. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryNz.php b/vendor/fisharebest/localization/src/Territory/TerritoryNz.php deleted file mode 100644 index 3a6b787e49..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryNz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory NZ - New Zealand. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryNz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'NZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryOm.php b/vendor/fisharebest/localization/src/Territory/TerritoryOm.php deleted file mode 100644 index a2d9223e6c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryOm.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory OM - Oman. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryOm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'OM'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPa.php b/vendor/fisharebest/localization/src/Territory/TerritoryPa.php deleted file mode 100644 index 53dead79f1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPa.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PA - Panama. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PA'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPe.php b/vendor/fisharebest/localization/src/Territory/TerritoryPe.php deleted file mode 100644 index 5a0f4ad605..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPe.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PE - Peru. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PE'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPf.php b/vendor/fisharebest/localization/src/Territory/TerritoryPf.php deleted file mode 100644 index c5fa6eefeb..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PF - French Polynesia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPg.php b/vendor/fisharebest/localization/src/Territory/TerritoryPg.php deleted file mode 100644 index e6b813b624..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PG - Papua New Guinea. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPh.php b/vendor/fisharebest/localization/src/Territory/TerritoryPh.php deleted file mode 100644 index 1bd3c2a761..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPh.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PH - Philippines. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PH'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPk.php b/vendor/fisharebest/localization/src/Territory/TerritoryPk.php deleted file mode 100644 index f7767e6f63..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPk.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PK - Pakistan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PK'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPl.php b/vendor/fisharebest/localization/src/Territory/TerritoryPl.php deleted file mode 100644 index ea4358259c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PL - Poland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PL'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPm.php b/vendor/fisharebest/localization/src/Territory/TerritoryPm.php deleted file mode 100644 index 20650cb162..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PM - Saint Pierre and Miquelon. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPn.php b/vendor/fisharebest/localization/src/Territory/TerritoryPn.php deleted file mode 100644 index e350b53c7b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PN - Pitcairn. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPr.php b/vendor/fisharebest/localization/src/Territory/TerritoryPr.php deleted file mode 100644 index 804f9ce07c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPr.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PR - Puerto Rico. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PR'; - } - - public function firstDay() - { - return 0; - } - - public function measurementSystem() - { - return 'US'; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPs.php b/vendor/fisharebest/localization/src/Territory/TerritoryPs.php deleted file mode 100644 index b606971fb7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PS - State of Palestine. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPt.php b/vendor/fisharebest/localization/src/Territory/TerritoryPt.php deleted file mode 100644 index 1eaac5dd5b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPt.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PT - Portugal. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PT'; - } - - /** - * @return int - */ - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPw.php b/vendor/fisharebest/localization/src/Territory/TerritoryPw.php deleted file mode 100644 index 7564b3c9ca..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPw.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PW - Palau. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PW'; - } - - public function measurementSystem() - { - return 'US'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryPy.php b/vendor/fisharebest/localization/src/Territory/TerritoryPy.php deleted file mode 100644 index fbfe6465e1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryPy.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory PY - Paraguay. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryPy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'PY'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryQa.php b/vendor/fisharebest/localization/src/Territory/TerritoryQa.php deleted file mode 100644 index 7aed3cc62d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryQa.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory QA - Qatar. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryQa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'QA'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryQm.php b/vendor/fisharebest/localization/src/Territory/TerritoryQm.php deleted file mode 100644 index b3dec46f21..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryQm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory QM - Private use. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryQm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'QM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryRe.php b/vendor/fisharebest/localization/src/Territory/TerritoryRe.php deleted file mode 100644 index 3b22bf6b94..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryRe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory RE - Réunion. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryRe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'RE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryRo.php b/vendor/fisharebest/localization/src/Territory/TerritoryRo.php deleted file mode 100644 index 888a914e2b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryRo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory RO - Romania. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryRo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'RO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryRs.php b/vendor/fisharebest/localization/src/Territory/TerritoryRs.php deleted file mode 100644 index 4f668ddd8e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryRs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory RS - Serbia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryRs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'RS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryRu.php b/vendor/fisharebest/localization/src/Territory/TerritoryRu.php deleted file mode 100644 index a9c47dce99..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryRu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory RU - Russian Federation. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryRu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'RU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryRw.php b/vendor/fisharebest/localization/src/Territory/TerritoryRw.php deleted file mode 100644 index 7d500e2174..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryRw.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory RW - Rwanda. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryRw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'RW'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySa.php b/vendor/fisharebest/localization/src/Territory/TerritorySa.php deleted file mode 100644 index cac9314a5c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySa.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SA - Saudi Arabia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SA'; - } - - public function firstDay() - { - return 0; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySb.php b/vendor/fisharebest/localization/src/Territory/TerritorySb.php deleted file mode 100644 index 6b2c58ed63..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySb.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SB - Solomon Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySb extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SB'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySc.php b/vendor/fisharebest/localization/src/Territory/TerritorySc.php deleted file mode 100644 index cdbd9733b7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SC - Seychelles. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySd.php b/vendor/fisharebest/localization/src/Territory/TerritorySd.php deleted file mode 100644 index 76ebe4ab5f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySd.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SD - Sudan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SD'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySe.php b/vendor/fisharebest/localization/src/Territory/TerritorySe.php deleted file mode 100644 index b2121eb20d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySe.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SE - Sweden. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SE'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySg.php b/vendor/fisharebest/localization/src/Territory/TerritorySg.php deleted file mode 100644 index 5b69e42b99..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySg.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SG - Singapore. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SG'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySh.php b/vendor/fisharebest/localization/src/Territory/TerritorySh.php deleted file mode 100644 index 3a2966f583..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySh.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SH - Saint Helena, Ascension and Tristan da Cunha. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SH'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySi.php b/vendor/fisharebest/localization/src/Territory/TerritorySi.php deleted file mode 100644 index 173c66329a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySi.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SI - Slovenia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SI'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySj.php b/vendor/fisharebest/localization/src/Territory/TerritorySj.php deleted file mode 100644 index 29f5309432..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySj.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SJ - Svalbard and Jan Mayen. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySj extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SJ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySk.php b/vendor/fisharebest/localization/src/Territory/TerritorySk.php deleted file mode 100644 index 85a71ec2c7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SK - Slovakia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySl.php b/vendor/fisharebest/localization/src/Territory/TerritorySl.php deleted file mode 100644 index 9f1380361b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SL - Sierra Leone. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SL'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySm.php b/vendor/fisharebest/localization/src/Territory/TerritorySm.php deleted file mode 100644 index 3974f8aad6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SM - San Marino. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySn.php b/vendor/fisharebest/localization/src/Territory/TerritorySn.php deleted file mode 100644 index 053aae3b45..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SN - Senegal. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySo.php b/vendor/fisharebest/localization/src/Territory/TerritorySo.php deleted file mode 100644 index f3776c60e5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySo.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SO - Somalia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SO'; - } - - public function firstDay() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySr.php b/vendor/fisharebest/localization/src/Territory/TerritorySr.php deleted file mode 100644 index b847cfb001..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SR - Suriname. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySs.php b/vendor/fisharebest/localization/src/Territory/TerritorySs.php deleted file mode 100644 index e812119c3d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySs.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SS - South Sudan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SS'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySt.php b/vendor/fisharebest/localization/src/Territory/TerritorySt.php deleted file mode 100644 index 2ea7006882..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ST - Sao Tome and Principe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ST'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySu.php b/vendor/fisharebest/localization/src/Territory/TerritorySu.php deleted file mode 100644 index cd92de2dc6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SU - Union of Soviet Socialist Republics. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySv.php b/vendor/fisharebest/localization/src/Territory/TerritorySv.php deleted file mode 100644 index 723102c0c3..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySv.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SV - El Salvador. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySv extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SV'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySx.php b/vendor/fisharebest/localization/src/Territory/TerritorySx.php deleted file mode 100644 index 13bfd9f8c5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySx.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SX - Sint Maarten (Dutch part). - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySx extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SX'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySy.php b/vendor/fisharebest/localization/src/Territory/TerritorySy.php deleted file mode 100644 index 609d67cb42..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySy.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SY - Syrian Arab Republic. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SY'; - } - - public function firstDay() - { - return 6; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritorySz.php b/vendor/fisharebest/localization/src/Territory/TerritorySz.php deleted file mode 100644 index 01978445a6..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritorySz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory SZ - Swaziland. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritorySz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'SZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTa.php b/vendor/fisharebest/localization/src/Territory/TerritoryTa.php deleted file mode 100644 index dd0f4cb399..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TA - Tristan da Cunha. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTc.php b/vendor/fisharebest/localization/src/Territory/TerritoryTc.php deleted file mode 100644 index 8bbed989cb..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TC - Turks and Caicos Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTd.php b/vendor/fisharebest/localization/src/Territory/TerritoryTd.php deleted file mode 100644 index bbe7985555..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TD - Chad. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTf.php b/vendor/fisharebest/localization/src/Territory/TerritoryTf.php deleted file mode 100644 index 79ad28634a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TF - French Southern Territories. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTg.php b/vendor/fisharebest/localization/src/Territory/TerritoryTg.php deleted file mode 100644 index f2e630d5b8..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TG - Togo. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTh.php b/vendor/fisharebest/localization/src/Territory/TerritoryTh.php deleted file mode 100644 index ed9c28a593..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTh.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TH - Thailand. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTh extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TH'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTj.php b/vendor/fisharebest/localization/src/Territory/TerritoryTj.php deleted file mode 100644 index b96d7fc552..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTj.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TJ - Tajikistan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTj extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TJ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTk.php b/vendor/fisharebest/localization/src/Territory/TerritoryTk.php deleted file mode 100644 index d23f725594..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTk.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TK - Tokelau. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTl.php b/vendor/fisharebest/localization/src/Territory/TerritoryTl.php deleted file mode 100644 index a166b52bc0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTl.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TL - Timor-Leste. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTl extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TL'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTm.php b/vendor/fisharebest/localization/src/Territory/TerritoryTm.php deleted file mode 100644 index cd07291a84..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TM - Turkmenistan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTn.php b/vendor/fisharebest/localization/src/Territory/TerritoryTn.php deleted file mode 100644 index 1211076534..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTn.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TN - Tunisia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TN'; - } - - public function firstDay() - { - return 0; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTo.php b/vendor/fisharebest/localization/src/Territory/TerritoryTo.php deleted file mode 100644 index 99bbac407e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTo.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TO - Tonga. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTo extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TO'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTp.php b/vendor/fisharebest/localization/src/Territory/TerritoryTp.php deleted file mode 100644 index 480a3b29b7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTp.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TP - East Timor. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTp extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TP'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTr.php b/vendor/fisharebest/localization/src/Territory/TerritoryTr.php deleted file mode 100644 index 77e17734f5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TR - Turkey. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTt.php b/vendor/fisharebest/localization/src/Territory/TerritoryTt.php deleted file mode 100644 index 09824d4ff7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTt.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TT - Trinidad and Tobago. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TT'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTv.php b/vendor/fisharebest/localization/src/Territory/TerritoryTv.php deleted file mode 100644 index 6ade8b8100..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTv.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TV - Tuvalu. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTv extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TV'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTw.php b/vendor/fisharebest/localization/src/Territory/TerritoryTw.php deleted file mode 100644 index 1782652e1c..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTw.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TW - Taiwan, Province of China. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TW'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryTz.php b/vendor/fisharebest/localization/src/Territory/TerritoryTz.php deleted file mode 100644 index 2bdedea4b0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryTz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory TZ - United Republic of Tanzania. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryTz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'TZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUa.php b/vendor/fisharebest/localization/src/Territory/TerritoryUa.php deleted file mode 100644 index 0841ca7ef0..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory UA - Ukraine. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'UA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUg.php b/vendor/fisharebest/localization/src/Territory/TerritoryUg.php deleted file mode 100644 index 2a59c68e1b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory UG - Uganda. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'UG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUm.php b/vendor/fisharebest/localization/src/Territory/TerritoryUm.php deleted file mode 100644 index 803e4bd922..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUm.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory UM - United States Minor Outlying Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'UM'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUn.php b/vendor/fisharebest/localization/src/Territory/TerritoryUn.php deleted file mode 100644 index e357b86c50..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory UN - United Nations. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'UN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUs.php b/vendor/fisharebest/localization/src/Territory/TerritoryUs.php deleted file mode 100644 index 1d4c72df9d..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUs.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory US - United States. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'US'; - } - - public function firstDay() - { - return 0; - } - - public function measurementSystem() - { - return 'US'; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUy.php b/vendor/fisharebest/localization/src/Territory/TerritoryUy.php deleted file mode 100644 index 0186199c08..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUy.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory UY - Uruguay. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUy extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'UY'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryUz.php b/vendor/fisharebest/localization/src/Territory/TerritoryUz.php deleted file mode 100644 index 41c3d9379a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryUz.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory UZ - Uzbekistan. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryUz extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'UZ'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVa.php b/vendor/fisharebest/localization/src/Territory/TerritoryVa.php deleted file mode 100644 index c518a3e40f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVa.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VA - Holy See (Vatican City State). - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VA'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVc.php b/vendor/fisharebest/localization/src/Territory/TerritoryVc.php deleted file mode 100644 index f1d146768f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVc.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VC - Saint Vincent and the Grenadines. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVc extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VC'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVe.php b/vendor/fisharebest/localization/src/Territory/TerritoryVe.php deleted file mode 100644 index 6be0c1778e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVe.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VE - Venezuela. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VE'; - } - - public function firstDay() - { - return 0; - } - - public function paperSize() - { - return 'US-Letter'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVg.php b/vendor/fisharebest/localization/src/Territory/TerritoryVg.php deleted file mode 100644 index 76d3fc52db..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVg.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VG - British Virgin Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVg extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VG'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVi.php b/vendor/fisharebest/localization/src/Territory/TerritoryVi.php deleted file mode 100644 index b7f1e5232b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVi.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VI - U.S. Virgin Islands. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVi extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VI'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVn.php b/vendor/fisharebest/localization/src/Territory/TerritoryVn.php deleted file mode 100644 index b48adbf7ec..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVn.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VN - Viet Nam. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVn extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VN'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryVu.php b/vendor/fisharebest/localization/src/Territory/TerritoryVu.php deleted file mode 100644 index 3115b2a337..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryVu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory VU - Vanuatu. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryVu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'VU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryWf.php b/vendor/fisharebest/localization/src/Territory/TerritoryWf.php deleted file mode 100644 index 431ce0245f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryWf.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory WF - Wallis and Futuna. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryWf extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'WF'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryWs.php b/vendor/fisharebest/localization/src/Territory/TerritoryWs.php deleted file mode 100644 index 8251b8f9ca..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryWs.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory WS - Samoa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryWs extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'WS'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryXk.php b/vendor/fisharebest/localization/src/Territory/TerritoryXk.php deleted file mode 100644 index a358f127e5..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryXk.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory XK - Kosovo. - * Note: this is a provisional assignemnt, used by various European organisations. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryXk extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'XK'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryYd.php b/vendor/fisharebest/localization/src/Territory/TerritoryYd.php deleted file mode 100644 index 5a052aa70a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryYd.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory YD - Democratic Yemen. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryYd extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'YD'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryYe.php b/vendor/fisharebest/localization/src/Territory/TerritoryYe.php deleted file mode 100644 index 08767673c7..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryYe.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory YE - Yemen. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryYe extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'YE'; - } - - public function firstDay() - { - return 0; - } - - public function weekendStart() - { - return 5; - } - - public function weekendEnd() - { - return 6; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryYt.php b/vendor/fisharebest/localization/src/Territory/TerritoryYt.php deleted file mode 100644 index 42c904510e..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryYt.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory YT - Mayotte. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryYt extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'YT'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryYu.php b/vendor/fisharebest/localization/src/Territory/TerritoryYu.php deleted file mode 100644 index 8332222fef..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryYu.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory YU - Yugoslavia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryYu extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'YU'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryZa.php b/vendor/fisharebest/localization/src/Territory/TerritoryZa.php deleted file mode 100644 index 5b649b3f8b..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryZa.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ZA - South Africa. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryZa extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ZA'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryZm.php b/vendor/fisharebest/localization/src/Territory/TerritoryZm.php deleted file mode 100644 index 15879ce84a..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryZm.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ZM - Zambia. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryZm extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ZM'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryZr.php b/vendor/fisharebest/localization/src/Territory/TerritoryZr.php deleted file mode 100644 index f84a6e769f..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryZr.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ZR - Zaire. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryZr extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ZR'; - } -} diff --git a/vendor/fisharebest/localization/src/Territory/TerritoryZw.php b/vendor/fisharebest/localization/src/Territory/TerritoryZw.php deleted file mode 100644 index 79730ceec1..0000000000 --- a/vendor/fisharebest/localization/src/Territory/TerritoryZw.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Territory; - -/** - * Class AbstractTerritory - Representation of the territory ZW - Zimbabwe. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class TerritoryZw extends AbstractTerritory implements TerritoryInterface -{ - public function code() - { - return 'ZW'; - } - - public function firstDay() - { - return 0; - } -} diff --git a/vendor/fisharebest/localization/src/Translation.php b/vendor/fisharebest/localization/src/Translation.php deleted file mode 100644 index 5ae721a6cf..0000000000 --- a/vendor/fisharebest/localization/src/Translation.php +++ /dev/null @@ -1,231 +0,0 @@ -<?php - -namespace Fisharebest\Localization; - -use InvalidArgumentException; - -/** - * Class Translation - a set of translated messages, such as a .MO file. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Translation -{ - // Constants for processing .MO files - const MO_MAGIC_LITTLE_ENDIAN = '950412de'; - const MO_MAGIC_BIG_ENDIAN = 'de120495'; - const PACK_LITTLE_ENDIAN = 'V'; - const PACK_BIG_ENDIAN = 'N'; - const PLURAL_SEPARATOR = "\x00"; - const CONTEXT_SEPARATOR = "\x04"; - - /** @var array An association of English -> translated messages */ - private $translations; - - /** - * The code for this variant. - * - * @param string $filename - */ - public function __construct($filename) - { - $this->translations = array(); - - switch (strtolower(pathinfo($filename, PATHINFO_EXTENSION))) { - case 'csv': - $fp = fopen($filename, 'rb'); - if ($fp) { - while (($data = fgetcsv($fp, 0, ';')) !== false) { - $this->translations[$data[0]] = $data[1]; - } - fclose($fp); - } - break; - - case 'mo': - $fp = fopen($filename, 'rb'); - if ($fp) { - $this->readMoFile($fp); - fclose($fp); - } - break; - - case 'po': - $this->readPoFile(file($filename)); - break; - - case 'php': - $translations = include $filename; - if (is_array($translations)) { - $this->translations = $translations; - } - break; - } - } - - /** - * The translation strings - * - * @return array - */ - public function asArray() - { - return $this->translations; - } - - /** - * Read specific binary data (32 bit words) from a .MO file - * - * @param resource $fp - * @param int $offset - * @param int $count - * @param string $pack "N" for big-endian, "V" for little-endian - * - * @return int[] - */ - private function readMoWords($fp, $offset, $count, $pack) - { - fseek($fp, $offset); - - return unpack($pack . $count, fread($fp, $count * 4)); - } - - /** - * Read and parse a .MO (gettext) file - * - * @link https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html - * - * @param resource $fp - * - * @return void - */ - private function readMoFile($fp) - { - // How is the numeric data packed in the .MO file? - $magic = $this->readMoWords($fp, 0, 1, self::PACK_LITTLE_ENDIAN); - - switch (dechex($magic[1])) { - case self::MO_MAGIC_LITTLE_ENDIAN: - $pack = self::PACK_LITTLE_ENDIAN; - break; - case self::MO_MAGIC_BIG_ENDIAN: - $pack = self::PACK_BIG_ENDIAN; - break; - default: - // Not a valid .MO file. - throw new InvalidArgumentException('Invalid .MO file'); - } - - // Read the lookup tables - list(, $number_of_strings, $offset_original, $offset_translated) = $this->readMoWords($fp, 8, 3, $pack); - $lookup_original = $this->readMoWords($fp, $offset_original, $number_of_strings * 2, $pack); - $lookup_translated = $this->readMoWords($fp, $offset_translated, $number_of_strings * 2, $pack); - - // Read the strings - for ($n = 1; $n < $number_of_strings; ++$n) { - fseek($fp, $lookup_original[$n * 2 + 2]); - $original = fread($fp, $lookup_original[$n * 2 + 1]); - fseek($fp, $lookup_translated[$n * 2 + 2]); - $translated = fread($fp, $lookup_translated[$n * 2 + 1]); - $this->translations[$original] = $translated; - } - } - - /** - * Read and parse a .PO (gettext) file - * - * @link https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html - * - * @param string[] $lines - * - * @return void - */ - private function readPoFile($lines) - { - // Strip comments - $lines = array_filter($lines, function ($line) { - return strpos($line, '#') !== 0; - }); - - // Trim carriage-returns, newlines, spaces - $lines = array_map('trim', $lines); - - // Merge continuation lines - $tmp = trim(implode("\n", $lines)); - $tmp = str_replace("\"\n\"", '', $tmp); - - // Split into separate translations - $translations = preg_split("/\n{2,}/", $tmp); - - foreach ($translations as $translation) { - $parts = explode("\n", $translation); - - $msgctxt = ''; - $msgid = ''; - $msgid_plural = ''; - $msgstr = ''; - $plurals = array(); - - foreach ($parts as $part) { - $fragments = explode(' ', $part, 2); - $keyword = $fragments[0]; - $text = substr($fragments[1], 1, -1); - $text = $this->unescapePoText($text); - switch ($keyword) { - case 'msgctxt': - $msgctxt = $text; - break; - case 'msgid': - $msgid = $text; - break; - case 'msgid_plural': - $msgid_plural = $text; - break; - case 'msgstr': - $msgstr = $text; - break; - default: - if (preg_match('/^msgstr\[(\d+)\]/', $keyword, $match)) { - $plurals[$match[1]] = $text; - } - } - } - - if ($msgctxt !== '') { - $msgid = $msgctxt . self::CONTEXT_SEPARATOR . $msgid; - } - - if ($msgid_plural !== '') { - $msgid .= self::PLURAL_SEPARATOR . $msgid_plural; - ksort($plurals); - $msgstr = implode(self::PLURAL_SEPARATOR, $plurals); - } - - if ($msgid !== '' && trim($msgstr, self::PLURAL_SEPARATOR) !== '') { - $this->translations[$msgid] = $msgstr; - } - } - } - - /** - * @param string $text - * - * @return string - */ - private function unescapePoText($text) - { - return strtr($text, array( - '\\\\' => '\\', - '\\a' => "\x07", - '\\b' => "\x08", - '\\f' => "\x0c", - '\\n' => "\n", - '\\r' => "\r", - '\\t' => "\t", - '\\v' => "\x0b", - '\\"' => '"', - )); - } -} diff --git a/vendor/fisharebest/localization/src/Translator.php b/vendor/fisharebest/localization/src/Translator.php deleted file mode 100644 index 4375e48862..0000000000 --- a/vendor/fisharebest/localization/src/Translator.php +++ /dev/null @@ -1,92 +0,0 @@ -<?php - -namespace Fisharebest\Localization; - -use Fisharebest\Localization\PluralRule\PluralRuleInterface; - -/** - * Class Translator - use a translation to translate messages. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class Translator -{ - /** @var array An association of English -> translated messages */ - private $translations; - - /** @var PluralRuleInterface */ - private $plural_rule; - - /** - * Create a translator - * - * @param array $translations - * @param PluralRuleInterface $plural_rule - */ - public function __construct(array $translations, $plural_rule) - { - $this->translations = $translations; - $this->plural_rule = $plural_rule; - } - - /** - * Translate a message into another language. - * Works the same as gettext(). - * - * @param string $message English text to translate - * - * @return string Translated text - */ - public function translate($message) - { - if (isset($this->translations[$message])) { - return $this->translations[$message]; - } - - return $message; - } - - /** - * Translate a context-sensitive message into another language. - * Works the same as pgettext(). - * - * @param string $context Context of the message, e.g. "verb" or "noun" - * @param string $message English text to translate - * - * @return string Translated text - */ - public function translateContext($context, $message) - { - $key = $context . Translation::CONTEXT_SEPARATOR . $message; - if (isset($this->translations[$key])) { - return $this->translations[$key]; - } - - return $message; - } - - /** - * Translate a plural message into another language. - * Works the same as ngettext(). - * - * @param string $message1 English text for singular - * @param string $message2 English text for plural - * @param int $number Number of entities - * - * @return string Translated text - */ - public function translatePlural($message1, $message2, $number) - { - $key = $message1 . Translation::PLURAL_SEPARATOR . $message2; - if (isset($this->translations[$key])) { - $plurals = explode(Translation::PLURAL_SEPARATOR, $this->translations[$key]); - if (count($plurals) === $this->plural_rule->plurals()) { - return $plurals[$this->plural_rule->plural($number)]; - } - } - - return $number === 1 ? $message1 : $message2; - } -} diff --git a/vendor/fisharebest/localization/src/Variant/VariantInterface.php b/vendor/fisharebest/localization/src/Variant/VariantInterface.php deleted file mode 100644 index 9a4a585f3a..0000000000 --- a/vendor/fisharebest/localization/src/Variant/VariantInterface.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Variant; - -/** - * Interface VariantInterface - Representation of a locale variant. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -interface VariantInterface -{ - /** - * The code for this variant. - * - * @return string - */ - public function code(); -} diff --git a/vendor/fisharebest/localization/src/Variant/VariantPosix.php b/vendor/fisharebest/localization/src/Variant/VariantPosix.php deleted file mode 100644 index f89b3d28b0..0000000000 --- a/vendor/fisharebest/localization/src/Variant/VariantPosix.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Variant; - -/** - * Class Posix - Representation of the Posix variant of en-US. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class VariantPosix implements VariantInterface -{ - public function code() - { - return 'posix'; - } -} diff --git a/vendor/fisharebest/localization/src/Variant/VariantValencia.php b/vendor/fisharebest/localization/src/Variant/VariantValencia.php deleted file mode 100644 index d61eb7a07d..0000000000 --- a/vendor/fisharebest/localization/src/Variant/VariantValencia.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Variant; - -/** - * Class VariantValencia - Representation of the Valencia variant of ca-ES. - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class VariantValencia implements VariantInterface -{ - public function code() - { - return 'valencia'; - } -} |
