Passed
Branch develop (612b6d)
by Steve
04:05
created
src/RepeaterBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
                 $config['_has_custom_collapsed_key'] = true;
46 46
             } else {
47 47
                 $fieldKey = preg_replace('/^field_/', '', $fieldKey);
48
-                $config['collapsed'] = $this->getName() . '_' . $fieldKey;
48
+                $config['collapsed'] = $this->getName().'_'.$fieldKey;
49 49
             }
50 50
         }
51 51
         return $config;
@@ -74,6 +74,6 @@  discard block
 block discarded – undo
74 74
      */
75 75
     private function getDefaultButtonLabel()
76 76
     {
77
-        return 'Add ' . Inflector::singularize($this->getLabel());
77
+        return 'Add '.Inflector::singularize($this->getLabel());
78 78
     }
79 79
 }
Please login to merge, or discard this patch.
src/Transform/RecursiveTransform.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function transform($config)
33 33
     {
34
-        foreach ($config as $key => $value ) {
34
+        foreach ($config as $key => $value) {
35 35
             if ($this->shouldTransformValue($key, $config)) {
36 36
                 $config = $this->transformConfig($config);
37 37
                 $config[$key] = $this->transformValue($value);
Please login to merge, or discard this patch.