. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Polish * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsPl extends AbstractSpecialChars { /** * A list of magiscule letters. * * @return string[] */ public function upper() { return array( 'Ą', 'Ć', 'Ę', 'Ł', 'Ń', 'Ó', 'Ś', 'Ź', 'Ż', ); } /** * A list of miniscule letters. * * @return string[] */ public function lower() { return array( 'ą', 'ć', 'ę', 'ł', 'ń', 'ó', 'ś', 'ź', 'ż', ); } }