Completed
Pull Request — master (#69)
by Vladimir
05:00
created
src/allejo/stakx/AssetEngine/SassEngine.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,13 +91,16 @@
 block discarded – undo
91 91
     {
92 92
         $sourcemap = __::get($this->options, 'sourcemap');
93 93
 
94
-        if ($sourcemap === false || $sourcemap === null) {
94
+        if ($sourcemap === false || $sourcemap === null)
95
+        {
95 96
             $this->compiler->setSourceMap(Compiler::SOURCE_MAP_NONE);
96 97
         }
97
-        elseif ($sourcemap === 'inline') {
98
+        elseif ($sourcemap === 'inline')
99
+        {
98 100
             $this->compiler->setSourceMap(Compiler::SOURCE_MAP_INLINE);
99 101
         }
100
-        else {
102
+        else
103
+        {
101 104
             $this->compiler->setSourceMap(Compiler::SOURCE_MAP_FILE);
102 105
             $this->compiler->setSourceMapOptions([
103 106
                 'sourceMapWriteTo' => $sourcemap
Please login to merge, or discard this patch.
tests/allejo/stakx/Test/PHPUnit_Stakx_TestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
     }
260 260
 
261 261
     /**
262
-     * @return Configuration|\PHPUnit_Framework_MockObject_MockObject
262
+     * @return Configuration
263 263
      */
264 264
     protected function getMockConfiguration()
265 265
     {
Please login to merge, or discard this patch.