Completed
Push — master ( 7bae76...0958d1 )
by Vladimir
9s
created
src/allejo/stakx/AssetEngine/Sass/SassEngine.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,14 +144,17 @@
 block discarded – undo
144 144
     {
145 145
         $sourceMap = __::get($this->options, 'sourcemap');
146 146
 
147
-        if ($sourceMap === 'inline') {
147
+        if ($sourceMap === 'inline')
148
+        {
148 149
             $this->compiler->setSourceMap(Compiler::SOURCE_MAP_INLINE);
149 150
         }
150
-        elseif ($sourceMap === true) {
151
+        elseif ($sourceMap === true)
152
+        {
151 153
             $this->compiler->setSourceMap(Compiler::SOURCE_MAP_FILE);
152 154
             $this->fileSourceMap = true;
153 155
         }
154
-        else {
156
+        else
157
+        {
155 158
             $this->compiler->setSourceMap(Compiler::SOURCE_MAP_NONE);
156 159
         }
157 160
     }
Please login to merge, or discard this patch.