compiler = $compiler; $this->filesystem = $filesystem; } /** * Build LESS files * * @param array $files * * @throws RuntimeException */ public function build($files) { foreach ($files as $lessFile => $target) { $this->filesystem->mkdir(dirname($target)); $this->compiler->compile($target, $lessFile); } } }