Passed
Push — master ( 0dfd68...85654b )
by DeGracia
02:48
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/Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
         $this->assertEquals(5, mb_strlen($str));
103 103
 
104
-        $chars = array_map(function ($c) {
104
+        $chars = array_map(function($c) {
105 105
             return '\\' . $c;
106 106
         }, $specialCharacter->handle());
107 107
 
Please login to merge, or discard this patch.