Test Setup Failed
Push — master ( c6c066...1fbdb5 )
by Steve
02:02 queued 11s
created
src/FlexibleContentBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,6 +145,6 @@
 block discarded – undo
145 145
      */
146 146
     private function getDefaultButtonLabel()
147 147
     {
148
-        return 'Add ' . $this->singularize($this->getLabel());
148
+        return 'Add '.$this->singularize($this->getLabel());
149 149
     }
150 150
 }
Please login to merge, or discard this patch.
src/RepeaterBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         if (array_key_exists('collapsed', $config)) {
41 41
             $fieldKey = $this->fieldsBuilder->getField($config['collapsed'])->getKey();
42 42
             $fieldKey = preg_replace('/^field_/', '', $fieldKey);
43
-            $config['collapsed'] = $this->getName() . '_' . $fieldKey;
43
+            $config['collapsed'] = $this->getName().'_'.$fieldKey;
44 44
         }
45 45
         return $config;
46 46
     }
@@ -68,6 +68,6 @@  discard block
 block discarded – undo
68 68
      */
69 69
     private function getDefaultButtonLabel()
70 70
     {
71
-        return 'Add ' . $this->singularize($this->getLabel());
71
+        return 'Add '.$this->singularize($this->getLabel());
72 72
     }
73 73
 }
Please login to merge, or discard this patch.