@@ -129,7 +129,7 @@ |
||
| 129 | 129 | |
| 130 | 130 | $options = $this->getOptions(); |
| 131 | 131 | |
| 132 | - array_walk($options, function (&$value, $option) { |
|
| 132 | + array_walk($options, function(&$value, $option) { |
|
| 133 | 133 | $value = $option.'='.$value; |
| 134 | 134 | }); |
| 135 | 135 | |
@@ -34,8 +34,8 @@ |
||
| 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 | } |