@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function run() |
68 | 68 | { |
69 | - $this->class .= " " . $this->additionalClass; |
|
69 | + $this->class .= " ".$this->additionalClass; |
|
70 | 70 | |
71 | - if($this->onlyTags) { |
|
71 | + if ($this->onlyTags) { |
|
72 | 72 | return "class = \"$this->class\" |
73 | 73 | data-src = \"$this->src\" |
74 | 74 | data-width = \"$this->width\" |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | } |
79 | 79 | |
80 | 80 | $tag = Html::tag('img', '', ['class' => $this->class, 'data-src' => $this->src, 'data-width' => $this->width, 'data-height' => $this->height]); |
81 | - $tag.= '<noscript><img class="'.$this->class.'" src="'.$this->src.'" /></noscript>'; |
|
81 | + $tag .= '<noscript><img class="'.$this->class.'" src="'.$this->src.'" /></noscript>'; |
|
82 | 82 | return $tag; |
83 | 83 | } |
84 | 84 | } |
85 | 85 | \ No newline at end of file |