Passed
Pull Request — master (#191)
by
unknown
06:12
created
src/Transform/NamespaceFieldKey.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
         if ($groupName) {
50 50
             // remove field_ or group_ if already at the beginning of the key
51 51
             $value = preg_replace('/^field_|^group_/', '', $value);
52
-            $namespace .= str_replace(' ', '_', $groupName) . '_';
52
+            $namespace .= str_replace(' ', '_', $groupName).'_';
53 53
         }
54
-        return strtolower($namespace . $value);
54
+        return strtolower($namespace.$value);
55 55
     }
56 56
 
57 57
     public function shouldTransformValue($key, $config)
Please login to merge, or discard this patch.