@@ -203,7 +203,7 @@ discard block |
||
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 |
||
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 |