@@ -40,7 +40,7 @@ discard block |
||
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 |
||
68 | 68 | */ |
69 | 69 | private function getDefaultButtonLabel() |
70 | 70 | { |
71 | - return 'Add ' . Inflector::singularize($this->getLabel()); |
|
71 | + return 'Add '.Inflector::singularize($this->getLabel()); |
|
72 | 72 | } |
73 | 73 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | { |
7 | 7 | public function __construct($name, $type = 'accordion', $config = []) |
8 | 8 | { |
9 | - parent::__construct($name, $type, $config); |
|
9 | + parent::__construct($name, $type, $config); |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | public function setOpen($value = 1) |
@@ -278,11 +278,11 @@ |
||
278 | 278 | $id = trim($id, '#'); |
279 | 279 | $class = trim($class, '.'); |
280 | 280 | |
281 | - if (! empty($id)) { |
|
281 | + if (!empty($id)) { |
|
282 | 282 | $this->setAttr('id', $id); |
283 | 283 | } |
284 | 284 | |
285 | - if (! empty($class)) { |
|
285 | + if (!empty($class)) { |
|
286 | 286 | $class = str_replace('.', ' ', $class); |
287 | 287 | $this->setAttr('class', $class); |
288 | 288 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | */ |
48 | 48 | private function buildLayouts() |
49 | 49 | { |
50 | - return array_map(function ($layout) { |
|
50 | + return array_map(function($layout) { |
|
51 | 51 | $layout = ($layout instanceof Builder) ? $layout->build() : $layout; |
52 | 52 | return $this->transformLayout($layout); |
53 | 53 | }, $this->getLayouts()); |
@@ -164,6 +164,6 @@ discard block |
||
164 | 164 | */ |
165 | 165 | private function getDefaultButtonLabel() |
166 | 166 | { |
167 | - return 'Add ' . Inflector::singularize($this->getLabel()); |
|
167 | + return 'Add '.Inflector::singularize($this->getLabel()); |
|
168 | 168 | } |
169 | 169 | } |