Completed
Push — master ( e5b73b...3dd35c )
by Marc
03:08
created
core/lazyload/LazyLoad.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function run()
38 38
     {
39 39
         $tag = Html::tag('img', '', ['class' => $this->class, 'data-src' => $this->src, 'data-width' => $this->width, 'data-height' => $this->height]);
40
-        $tag.= '<noscript><img class="'.$this->class.'" src="'.$this->src.'" /></noscript>';
40
+        $tag .= '<noscript><img class="'.$this->class.'" src="'.$this->src.'" /></noscript>';
41 41
         return $tag;
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
core/tag/BaseTag.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
             $this->_view = Yii::$app->getView();
28 28
         }
29 29
     	
30
-    	return $this->_view;
30
+        return $this->_view;
31 31
     }
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.