@@ -127,7 +127,7 @@ |
||
127 | 127 | } |
128 | 128 | |
129 | 129 | $this->registerPlugin('button'); |
130 | - return Html::tag($this->tagName, $this->renderIcon() . $label, $this->options); |
|
130 | + return Html::tag($this->tagName, $this->renderIcon().$label, $this->options); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | Html::addCssClass($iconOptions, Position::LEFT); |
190 | 190 | } |
191 | 191 | |
192 | - $label = Html::icon($iconName, $iconOptions) . $label; |
|
192 | + $label = Html::icon($iconName, $iconOptions).$label; |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | $options = $link; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | if (isset($link['url'])) { |
203 | 203 | return Html::a($label, $link['url'], $options); |
204 | 204 | } else { |
205 | - return Html::tag('span', $label, $options) ; |
|
205 | + return Html::tag('span', $label, $options); |
|
206 | 206 | } |
207 | 207 | } |
208 | 208 | } |