| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 11 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 31 | public function processFile()  | 
            ||
| 32 |     { | 
            ||
| 33 | $cachedFile = Util::joinFile([$this->config->getCachePath(), $this->inputFile->getRelativePathname()]);  | 
            ||
| 34 | |||
| 35 |         if (!Util::getFS()->exists($cachedFile)) { | 
            ||
| 36 | $html = file_get_contents($this->inputFile->getPathname());  | 
            ||
| 37 | $htmlCompressed = $this->processor->minify($html);  | 
            ||
| 38 | \Cecil\Util::getFS()->dumpFile($cachedFile, $htmlCompressed);  | 
            ||
| 39 | }  | 
            ||
| 40 | |||
| 41 | $this->outputFile = new \SplFileInfo($cachedFile);  | 
            ||
| 42 | }  | 
            ||
| 44 |