diff options
Diffstat (limited to 'vendor/fisharebest/localization/src/Script')
199 files changed, 0 insertions, 5599 deletions
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'; - } -} |
