File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,6 @@ class Processor
39
39
* @var LESSCompiler
40
40
*/
41
41
private $ less ;
42
- /**
43
- * @var CompassCompiler
44
- */
45
- private $ compass ;
46
42
47
43
public function __construct (IOInterface $ io )
48
44
{
@@ -55,7 +51,7 @@ protected function initCompilers()
55
51
$ this ->less = new LESSCompiler ();
56
52
$ this ->sass = new SASSCompiler ();
57
53
/** attaches compass functionality to the SASS compiler */
58
- $ this -> compass = new CompassCompiler ($ this ->sass );
54
+ new CompassCompiler ($ this ->sass );
59
55
}
60
56
61
57
/**
@@ -103,9 +99,8 @@ public function concatOutput()
103
99
public function saveOutput ()
104
100
{
105
101
foreach ($ this ->concatOutput () as $ path => $ content ) {
106
-
107
102
$ directory = dirname ($ path );
108
- if (!is_dir ($ dir = $ directory )) {
103
+ if (!is_dir ($ directory )) {
109
104
$ this ->io ->write ("<info>creating directory</info>: {$ directory }" );
110
105
mkdir ($ directory , 0755 , true );
111
106
}
You can’t perform that action at this time.
0 commit comments