. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Arabic * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsAr extends AbstractSpecialChars { /** * A list of magiscule letters. * * @return string[] */ public function upper() { return array( 'ا', 'ب', 'ت', 'ث', 'ج', 'ح', 'خ', 'د', 'ذ', 'ر', 'ز', 'س', 'ش', 'ص', 'ض', 'ط', 'ظ', 'ع', 'غ', 'ف', 'ق', 'ك', 'ل', 'م', 'ن', 'ه', 'و', 'ي', 'آ', 'ة', 'ى', 'ی', ); } }