Completed
Pull Request — master (#1868)
by Marc
21:29
created
core/lazyload/LazyLoad.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -142,10 +142,10 @@  discard block
 block discarded – undo
142 142
      */
143 143
     public function run()
144 144
     {
145
-        $class = ($this->placeholderSrc ? 'lazyimage-wrapper' : 'lazy-image') . ' ' . $this->extraClass;
145
+        $class = ($this->placeholderSrc ? 'lazyimage-wrapper' : 'lazy-image').' '.$this->extraClass;
146 146
 
147 147
         if ($this->placeholderSrc && $this->placeholderAsBase64) {
148
-            $this->placeholderSrc = 'data:image/jpg;base64,' . base64_encode(file_get_contents($this->placeholderSrc));
148
+            $this->placeholderSrc = 'data:image/jpg;base64,'.base64_encode(file_get_contents($this->placeholderSrc));
149 149
         }
150 150
 
151 151
         if ($this->attributesOnly && !$this->placeholderSrc) {
@@ -153,10 +153,10 @@  discard block
 block discarded – undo
153 153
         }
154 154
 
155 155
         if ($this->placeholderSrc) {
156
-            $tag = '<div class="' . $class . '">';
156
+            $tag = '<div class="'.$class.'">';
157 157
             $tag .= Html::tag('img', '', ['class' => 'lazy-image lazyimage', 'data-src' => $this->src]);
158 158
             $tag .= Html::tag('img', '', ['class' => 'lazyimage-placeholder-image', 'src' => $this->placeholderSrc]);
159
-            $tag .= '<noscript><img class="lazyimage-image" src="' . $this->src . '" /></noscript>';
159
+            $tag .= '<noscript><img class="lazyimage-image" src="'.$this->src.'" /></noscript>';
160 160
             $tag .= '</div>';
161 161
         } else {
162 162
             $tag = Html::tag('img', '', ['class' => $class, 'data-src' => $this->src, 'data-width' => $this->width, 'data-height' => $this->height]);
Please login to merge, or discard this patch.