Completed
Pull Request — development (#691)
by Nick
04:37
created
htdocs/src/Oc/Command/CreateWebCacheCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
          */
102 102
         foreach ($rii as $file) {
103 103
 
104
-            if ($file->isDir() || $file->getExtension() !== 'js'){
104
+            if ($file->isDir() || $file->getExtension() !== 'js') {
105 105
                 continue;
106 106
             }
107 107
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         $scss = new Compiler();
130 130
         $scss->setIgnoreErrors(true);
131 131
         $scss->addImportPath($applicationScssPath);
132
-        $scss->addImportPath(function ($path) use ($projectDir) {
132
+        $scss->addImportPath(function($path) use ($projectDir) {
133 133
             //Check for tilde as this refers to the node_modules dir
134 134
             if (strpos($path, '~') === 0) {
135 135
                 $path = str_replace(
Please login to merge, or discard this patch.