diff options
Diffstat (limited to 'vendor/fisharebest/localization/src/Locale/LocaleAr.php')
| -rw-r--r-- | vendor/fisharebest/localization/src/Locale/LocaleAr.php | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/vendor/fisharebest/localization/src/Locale/LocaleAr.php b/vendor/fisharebest/localization/src/Locale/LocaleAr.php deleted file mode 100644 index f48f105de7..0000000000 --- a/vendor/fisharebest/localization/src/Locale/LocaleAr.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Fisharebest\Localization\Locale; - -use Fisharebest\Localization\Language\LanguageAr; - -/** - * Class LocaleAr - Arabic - * - * @author Greg Roach <fisharebest@gmail.com> - * @copyright (c) 2019 Greg Roach - * @license GPLv3+ - */ -class LocaleAr extends AbstractLocale implements LocaleInterface -{ - public function endonym() - { - return 'العربية'; - } - - public function language() - { - return new LanguageAr(); - } - - public function numberSymbols() - { - return array( - self::GROUP => self::ARAB_GROUP, - self::DECIMAL => self::ARAB_DECIMAL, - self::NEGATIVE => self::ALM . self::HYPHEN, - ); - } - - protected function percentFormat() - { - return self::PLACEHOLDER . self::ARAB_PERCENT . self::ALM; - } -} |
