@@ 7-13 (lines=7) @@ | ||
4 | ||
5 | use DeGraciaMathieu\Riddler\Contracts\Dictionary; |
|
6 | ||
7 | class Letter extends AbstractDictionary implements Dictionary |
|
8 | { |
|
9 | public function handle() |
|
10 | { |
|
11 | 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']; |
|
12 | } |
|
13 | } |
|
14 |
@@ 7-13 (lines=7) @@ | ||
4 | ||
5 | use DeGraciaMathieu\Riddler\Contracts\Dictionary; |
|
6 | ||
7 | class UppercaseLetter extends AbstractDictionary implements Dictionary |
|
8 | { |
|
9 | public function handle() |
|
10 | { |
|
11 | 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']; |
|
12 | } |
|
13 | } |
|
14 |