Completed
Push — master ( e8d89f...97697f )
by BENOIT
07:20 queued 05:04
created
src/Violin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 
204 204
         $str->str = \preg_replace_callback(
205 205
             '/[-_\s]+(.)?/u',
206
-            function ($match) use ($encoding) {
206
+            function($match) use ($encoding) {
207 207
                 if (isset($match[1])) {
208 208
                     return (string) $this->fork($match[1], $encoding)->toUpperCase();
209 209
                 }
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 
216 216
         $str->str = \preg_replace_callback(
217 217
             '/[\d]+(.)?/u',
218
-            function ($match) use ($encoding) {
218
+            function($match) use ($encoding) {
219 219
                 return (string) $this->fork($match[0], $encoding)->toUpperCase();
220 220
             },
221 221
             $str->str
Please login to merge, or discard this patch.