Completed
Push — master ( 9f0ecb...4a849c )
by Oleg
06:13
created
web/Asset.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             if (0 !== count($this->js)) {
109 109
                 /** @noinspection ForeachSourceInspection */
110 110
                 foreach ($this->js AS $script) {
111
-                    $this->view->registerScriptFile($this->publishPath . $script, $this->isHead);
111
+                    $this->view->registerScriptFile($this->publishPath.$script, $this->isHead);
112 112
                 }
113 113
             }
114 114
         }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             if (0 !== count($this->css)) {
122 122
                 /** @noinspection ForeachSourceInspection */
123 123
                 foreach ($this->css AS $style) {
124
-                    $this->view->registerCssFile($this->publishPath . $style, $this->isHead);
124
+                    $this->view->registerCssFile($this->publishPath.$style, $this->isHead);
125 125
                 }
126 126
             }
127 127
         }
Please login to merge, or discard this patch.