Completed
Push — development ( 8ef386...754cf1 )
by Thomas
19s
created
htdocs/src/Oc/Command/CreateWebCacheCommand.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Leafo\ScssPhp\Compiler;
9 9
 use RecursiveDirectoryIterator;
10 10
 use RecursiveIteratorIterator;
11
-use RegexIterator;
12 11
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
13 12
 use Symfony\Component\Console\Exception\InvalidArgumentException;
14 13
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this 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.