@@ -315,7 +315,7 @@ |
||
| 315 | 315 | return |
| 316 | 316 | Marker::div( |
| 317 | 317 | Marker::label( |
| 318 | - Form::input($name, $value, $attributes) . Marker::span($label), |
|
| 318 | + Form::input($name, $value, $attributes).Marker::span($label), |
|
| 319 | 319 | ['for' => $attributes['id']] |
| 320 | 320 | ), |
| 321 | 321 | ['class' => 'checkbutton'] |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | foreach ($list as $value => $label) { |
| 109 | 109 | $option_attributes = ['value' => $value]; |
| 110 | 110 | if ($selected == $value) { |
| 111 | - $option_attributes['selected'] = 'selected'; |
|
| 111 | + $option_attributes['selected'] = 'selected'; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | $options .= new Element('option', "$label", $option_attributes); |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | public static function legend(string $label, array $attributes = []): string |
| 128 | 128 | { |
| 129 | - return '' . (new Element('legend', $label, $attributes)); |
|
| 129 | + return ''.(new Element('legend', $label, $attributes)); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | |
| 148 | 148 | public static function button(string $label, array $attributes = []): string |
| 149 | 149 | { |
| 150 | - return '' . (new Element('button', $label, $attributes)); |
|
| 150 | + return ''.(new Element('button', $label, $attributes)); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -201,6 +201,6 @@ discard block |
||
| 201 | 201 | unset($attributes['label']); |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | - return $label . (new Element($tag, $content, $attributes)); |
|
| 204 | + return $label.(new Element($tag, $content, $attributes)); |
|
| 205 | 205 | } |
| 206 | 206 | } |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | $this->content = $content; |
| 79 | 79 | |
| 80 | 80 | foreach ($attributes as $name => $value) { |
| 81 | - if(is_int($name)) { |
|
| 81 | + if (is_int($name)) { |
|
| 82 | 82 | $name = $value; |
| 83 | 83 | } |
| 84 | 84 | |