Completed
Push — master ( b6962a...dbec43 )
by Eric
03:55
created
src/Naming/AbstractSeparatorNamingStrategy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
      */
35 35
     protected function doConvert($name)
36 36
     {
37
-        $name = str_replace(['--', '__', '  ',], ' ', $name);
38
-        $name  = lcfirst(str_replace(['-', '_', ' '], $this->separator, $name));
37
+        $name = str_replace(['--', '__', '  ', ], ' ', $name);
38
+        $name = lcfirst(str_replace(['-', '_', ' '], $this->separator, $name));
39 39
 
40 40
         return strtolower(preg_replace('/([A-Z])/', $this->separator.'$1', $name));
41 41
     }
Please login to merge, or discard this patch.