@@ 7-13 (lines=7) @@ | ||
4 | ||
5 | use DeGraciaMathieu\Riddler\Contracts\Dictionary; |
|
6 | ||
7 | class AccentedLetter extends AbstractDictionary implements Dictionary |
|
8 | { |
|
9 | public function handle() |
|
10 | { |
|
11 | return ['à','á','â','ã','ä','å','è','é','ê','ë','ì','í','î','ï','ñ','ò','ó','ô','õ','ö','ù','ú','û','ü','ý']; |
|
12 | } |
|
13 | } |
|
14 |
@@ 7-13 (lines=7) @@ | ||
4 | ||
5 | use DeGraciaMathieu\Riddler\Contracts\Dictionary; |
|
6 | ||
7 | class AccentedUppercaseLetter extends AbstractDictionary implements Dictionary |
|
8 | { |
|
9 | public function handle() |
|
10 | { |
|
11 | return ['À','Á','Â','Ã','Ä','Å','È','É','Ê','Ë','Ì','Í','Î','Ï','Ñ','Ò','Ó','Ô','Õ','Ö','Ù','Ú','Û','Ü','Ý']; |
|
12 | } |
|
13 | } |
|
14 |
@@ 7-13 (lines=7) @@ | ||
4 | ||
5 | use DeGraciaMathieu\Riddler\Contracts\Dictionary; |
|
6 | ||
7 | class SpecialCharacter extends AbstractDictionary implements Dictionary |
|
8 | { |
|
9 | public function handle() |
|
10 | { |
|
11 | return ['[','&','+','#','|','^','°','=','!','@','%','*','?','_','~','-','§',':',';','.',']','\\','/']; |
|
12 | } |
|
13 | } |
|
14 |