@@ -21,7 +21,8 @@ |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -interface SpecialCharsInterface { |
|
24 | +interface SpecialCharsInterface |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsHaw extends AbstractSpecialChars { |
|
24 | +class SpecialCharsHaw extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'Ā', 'Ē', 'Ī', 'Ō', 'Ū', '‘', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'ā', 'ē', 'ī', 'ō', 'ū', '‘', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsSl extends AbstractSpecialChars { |
|
24 | +class SpecialCharsSl extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'Č', 'Š', 'Ž', 'Ć', 'Ð', 'Ä', 'Ö', 'Ü', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'č', 'š', 'ž', 'ć', 'đ', 'ä', 'ö', 'ü', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsNn extends AbstractSpecialChars { |
|
24 | +class SpecialCharsNn extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'Æ', 'Ø', 'Å', 'À', 'É', 'Ê', 'Ó', 'Ò', 'Ô', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'æ', 'ø', 'å', 'à', 'é', 'ê', 'ó', 'ò', 'ô', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsGd extends AbstractSpecialChars { |
|
24 | +class SpecialCharsGd extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'Á', 'É', 'Í', 'Ó', 'Ú', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'á', 'é', 'í', 'ó', 'ú', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsPl extends AbstractSpecialChars { |
|
24 | +class SpecialCharsPl extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'Ą', 'Ć', 'Ę', 'Ł', 'Ń', 'Ó', 'Ś', 'Ź', 'Ż', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'ą', 'ć', 'ę', 'ł', 'ń', 'ó', 'ś', 'ź', 'ż', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsPt extends AbstractSpecialChars { |
|
24 | +class SpecialCharsPt extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'À', 'Á', 'Â', 'Ã', 'Ç', 'É', 'Ê', 'Í', 'Ó', 'Ô', 'Õ', 'Ú', 'Ü', 'È', 'Ò', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'à', 'á', 'â', 'ã', 'ç', 'é', 'ê', 'í', 'ó', 'ô', 'õ', 'ú', 'ü', 'è', 'ò', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ discard block |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsIt extends AbstractSpecialChars { |
|
24 | +class SpecialCharsIt extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'À', 'È', 'É', 'Ì', 'Í', 'Ò', 'Ó', 'Ù', 'Ú', 'Ï', |
33 | 35 | ); |
@@ -38,7 +40,8 @@ discard block |
||
38 | 40 | * |
39 | 41 | * @return string[] |
40 | 42 | */ |
41 | - public function lower() { |
|
43 | + public function lower() |
|
44 | + { |
|
42 | 45 | return array( |
43 | 46 | 'à', 'è', 'é', 'ì', 'í', 'ò', 'ó', 'ù', 'ú', 'ï', |
44 | 47 | ); |
@@ -21,13 +21,15 @@ |
||
21 | 21 | * For each language, list the symbols, puncutation and letters with diacritics |
22 | 22 | * that may be difficult to type. |
23 | 23 | */ |
24 | -class SpecialCharsHe extends AbstractSpecialChars { |
|
24 | +class SpecialCharsHe extends AbstractSpecialChars |
|
25 | +{ |
|
25 | 26 | /** |
26 | 27 | * A list of magiscule letters. |
27 | 28 | * |
28 | 29 | * @return string[] |
29 | 30 | */ |
30 | - public function upper() { |
|
31 | + public function upper() |
|
32 | + { |
|
31 | 33 | return array( |
32 | 34 | 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י', 'כ', 'ך', 'ל', 'מ', |
33 | 35 | 'ם', 'נ', 'ן', 'ס', 'ע', 'פ', 'ף', 'צ', 'ץ', 'ק', 'ר', 'ש', 'ת', |