Completed
Push — master ( 11ee78...8b3cbf )
by Thomas
04:46
created
src/utils/NameUtils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 	public static function toStudlyCase($input) {
13 13
 		$input = trim($input, '-_');
14 14
 		return ucfirst(preg_replace_callback('/([A-Z-_][a-z]+)/', function($matches) {
15
-			return ucfirst(str_replace(['-','_'], '',$matches[0]));
15
+			return ucfirst(str_replace(['-', '_'], '', $matches[0]));
16 16
 		}, $input));
17 17
 	}
18 18
 	
Please login to merge, or discard this patch.