@@ -4,5 +4,5 @@ |
||
4 | 4 | |
5 | 5 | interface Format |
6 | 6 | { |
7 | - public function handle(); |
|
7 | + public function handle(); |
|
8 | 8 | } |
@@ -4,5 +4,5 @@ |
||
4 | 4 | |
5 | 5 | interface Dictionary |
6 | 6 | { |
7 | - public function handle(); |
|
7 | + public function handle(); |
|
8 | 8 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | { |
7 | 7 | public function handle() |
8 | 8 | { |
9 | - return ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']; |
|
9 | + return ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']; |
|
10 | 10 | } |
11 | 11 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | { |
7 | 7 | public function handle() |
8 | 8 | { |
9 | - return ['à','á','â','ã','ä','å','è','é','ê','ë','ì','í','î','ï','ñ','ò','ó','ô','õ','ö','ù','ú','û','ü','ý']; |
|
9 | + return ['à', 'á', 'â', 'ã', 'ä', 'å', 'è', 'é', 'ê', 'ë', 'ì', 'í', 'î', 'ï', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', 'ù', 'ú', 'û', 'ü', 'ý']; |
|
10 | 10 | } |
11 | 11 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | { |
7 | 7 | public function handle() |
8 | 8 | { |
9 | - return ['À','Á','Â','Ã','Ä','Å','È','É','Ê','Ë','Ì','Í','Î','Ï','Ñ','Ò','Ó','Ô','Õ','Ö','Ù','Ú','Û','Ü','Ý']; |
|
9 | + return ['À', 'Á', 'Â', 'Ã', 'Ä', 'Å', 'È', 'É', 'Ê', 'Ë', 'Ì', 'Í', 'Î', 'Ï', 'Ñ', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', 'Ù', 'Ú', 'Û', 'Ü', 'Ý']; |
|
10 | 10 | } |
11 | 11 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | { |
7 | 7 | public function handle() |
8 | 8 | { |
9 | - return ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']; |
|
9 | + return ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']; |
|
10 | 10 | } |
11 | 11 | } |
@@ -8,6 +8,6 @@ |
||
8 | 8 | { |
9 | 9 | public function handle() |
10 | 10 | { |
11 | - return ['[','&','+','#','|','^','°','=','!','@','%','*','?','_','~','-','§',':',';','.',']']; |
|
11 | + return ['[', '&', '+', '#', '|', '^', '°', '=', '!', '@', '%', '*', '?', '_', '~', '-', '§', ':', ';', '.', ']']; |
|
12 | 12 | } |
13 | 13 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | { |
7 | 7 | public function handle() |
8 | 8 | { |
9 | - return [0,1,2,3,4,5,6,7,8,9]; |
|
9 | + return [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; |
|
10 | 10 | } |
11 | 11 | } |
@@ -15,6 +15,6 @@ |
||
15 | 15 | $tmp[] = $dictionary[0]; |
16 | 16 | } |
17 | 17 | |
18 | - return $tmp; |
|
18 | + return $tmp; |
|
19 | 19 | } |
20 | 20 | } |
@@ -8,7 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | $tmp = []; |
10 | 10 | |
11 | - for ($i=0; $i < $this->size; $i++) { |
|
11 | + for ($i = 0; $i < $this->size; $i++) { |
|
12 | 12 | |
13 | 13 | shuffle($dictionary); |
14 | 14 |