Leafo\ScssPhp\Compiler::addParsedFile PHP Method

addParsedFile() public method

Adds to list of parsed files
public addParsedFile ( string $path )
$path string
    public function addParsedFile($path)
    {
        if (isset($path) && file_exists($path)) {
            $this->parsedFiles[realpath($path)] = filemtime($path);
        }
    }
Compiler