. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Hebrew * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsHe extends AbstractSpecialChars { /** * A list of magiscule letters. * * @return string[] */ public function upper() { return array( 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י', 'כ', 'ך', 'ל', 'מ', 'ם', 'נ', 'ן', 'ס', 'ע', 'פ', 'ף', 'צ', 'ץ', 'ק', 'ר', 'ש', 'ת', ); } }