Completed
Push — master ( 9ef083...af60f7 )
by Marc
03:21
created
core/lazyload/LazyLoad.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.