Passed
Pull Request — master (#12)
by lee
02:21
created
src/Dictionaries/UppercaseLetter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
 {
9 9
     public function handle()
10 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'];
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 12
     }
13 13
 }
Please login to merge, or discard this patch.
tests/IntegrationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 
97 97
         $this->assertNotEmpty($str);
98 98
 
99
-        $chars = array_map(function ($c) {
99
+        $chars = array_map(function($c) {
100 100
             return '\\' . $c;
101 101
         }, $specialCharacter->handle());
102 102
 
Please login to merge, or discard this patch.