Passed
Push — 1.7 ( 23cbb7...8df8a8 )
by Greg
08:15
created
app/SpecialChars/SpecialCharsCs.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsCs extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'Á', 'Ą', 'Ä', 'É', 'Ę', 'Ě', 'Í', 'Ó', 'Ô', 'Ú', 'Ů', 'Ý', 'Č', 'Ĺ', 'Ň', 'Ŕ', 'Ř', 'Š', 'Ž',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'Á', 'Ą', 'Ä', 'É', 'Ę', 'Ě', 'Í', 'Ó', 'Ô', 'Ú', 'Ů', 'Ý', 'Č', 'Ĺ', 'Ň', 'Ŕ', 'Ř', 'Š', 'Ž',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'á', 'ą', 'ä', 'é', 'ę', 'ě', 'í', 'ó', 'ô', 'ú', 'ů', 'ý', 'č', 'ď', 'ť', 'ĺ', 'ň', 'ŕ', 'ř', 'š', 'ž',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'á', 'ą', 'ä', 'é', 'ę', 'ě', 'í', 'ó', 'ô', 'ú', 'ů', 'ý', 'č', 'ď', 'ť', 'ĺ', 'ň', 'ŕ', 'ř', 'š', 'ž',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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 SpecialCharsCs extends AbstractSpecialChars {
24
+class SpecialCharsCs 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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsInterface.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -22,24 +22,24 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 interface SpecialCharsInterface {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper();
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper();
31 31
 
32
-	/**
33
-	 * A list of miniscule letters.
34
-	 *
35
-	 * @return string[]
36
-	 */
37
-	public function lower();
32
+    /**
33
+     * A list of miniscule letters.
34
+     *
35
+     * @return string[]
36
+     */
37
+    public function lower();
38 38
 
39
-	/**
40
-	 * A list of puncutation and other symbols
41
-	 *
42
-	 * @return string[]
43
-	 */
44
-	public function other();
39
+    /**
40
+     * A list of puncutation and other symbols
41
+     *
42
+     * @return string[]
43
+     */
44
+    public function other();
45 45
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,8 @@
 block discarded – undo
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
 	 *
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsHaw.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsHaw extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'Ā', 'Ē', 'Ī', 'Ō', 'Ū', '‘',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'Ā', 'Ē', 'Ī', 'Ō', 'Ū', '‘',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'ā', 'ē', 'ī', 'ō', 'ū', '‘',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'ā', 'ē', 'ī', 'ō', 'ū', '‘',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsSl.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsSl extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'Č', 'Š', 'Ž', 'Ć', 'Ð', 'Ä', 'Ö', 'Ü',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'Č', 'Š', 'Ž', 'Ć', 'Ð', 'Ä', 'Ö', 'Ü',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'č', 'š', 'ž', 'ć', 'đ', 'ä', 'ö', 'ü',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'č', 'š', 'ž', 'ć', 'đ', 'ä', 'ö', 'ü',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsNn.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsNn extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'Æ', 'Ø', 'Å', 'À', 'É', 'Ê', 'Ó', 'Ò', 'Ô',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'Æ', 'Ø', 'Å', 'À', 'É', 'Ê', 'Ó', 'Ò', 'Ô',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'æ', 'ø', 'å', 'à', 'é', 'ê', 'ó', 'ò', 'ô',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'æ', 'ø', 'å', 'à', 'é', 'ê', 'ó', 'ò', 'ô',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsGd.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsGd extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'Á', 'É', 'Í', 'Ó', 'Ú',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'Á', 'É', 'Í', 'Ó', 'Ú',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'á', 'é', 'í', 'ó', 'ú',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'á', 'é', 'í', 'ó', 'ú',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsPl.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsPl extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'Ą', 'Ć', 'Ę', 'Ł', 'Ń', 'Ó', 'Ś', 'Ź', 'Ż',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'Ą', 'Ć', 'Ę', 'Ł', 'Ń', 'Ó', 'Ś', 'Ź', 'Ż',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'ą', 'ć', 'ę', 'ł', 'ń', 'ó', 'ś', 'ź', 'ż',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'ą', 'ć', 'ę', 'ł', 'ń', 'ó', 'ś', 'ź', 'ż',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsPt.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsPt extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'À', 'Á', 'Â', 'Ã', 'Ç', 'É', 'Ê', 'Í', 'Ó', 'Ô', 'Õ', 'Ú', 'Ü', 'È', 'Ò',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'À', 'Á', 'Â', 'Ã', 'Ç', 'É', 'Ê', 'Í', 'Ó', 'Ô', 'Õ', 'Ú', 'Ü', 'È', 'Ò',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'à', 'á', 'â', 'ã', 'ç', 'é', 'ê', 'í', 'ó', 'ô', 'õ', 'ú', 'ü', 'è', 'ò',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'à', 'á', 'â', 'ã', 'ç', 'é', 'ê', 'í', 'ó', 'ô', 'õ', 'ú', 'ü', 'è', 'ò',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.
app/SpecialChars/SpecialCharsIt.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
  * that may be difficult to type.
23 23
  */
24 24
 class SpecialCharsIt extends AbstractSpecialChars {
25
-	/**
26
-	 * A list of magiscule letters.
27
-	 *
28
-	 * @return string[]
29
-	 */
30
-	public function upper() {
31
-		return array(
32
-			'À', 'È', 'É', 'Ì', 'Í', 'Ò', 'Ó', 'Ù', 'Ú', 'Ï',
33
-		);
34
-	}
25
+    /**
26
+     * A list of magiscule letters.
27
+     *
28
+     * @return string[]
29
+     */
30
+    public function upper() {
31
+        return array(
32
+            'À', 'È', 'É', 'Ì', 'Í', 'Ò', 'Ó', 'Ù', 'Ú', 'Ï',
33
+        );
34
+    }
35 35
 
36
-	/**
37
-	 * A list of miniscule letters.
38
-	 *
39
-	 * @return string[]
40
-	 */
41
-	public function lower() {
42
-		return array(
43
-			'à', 'è', 'é', 'ì', 'í', 'ò', 'ó', 'ù', 'ú', 'ï',
44
-		);
45
-	}
36
+    /**
37
+     * A list of miniscule letters.
38
+     *
39
+     * @return string[]
40
+     */
41
+    public function lower() {
42
+        return array(
43
+            'à', 'è', 'é', 'ì', 'í', 'ò', 'ó', 'ù', 'ú', 'ï',
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		);
Please login to merge, or discard this patch.