MatthiasMullie\Minify\Minify::save PHP Method

save() protected method

Save to file.
protected save ( string $content, string $path )
$content string The minified data
$path string The path to save the minified data to
    protected function save($content, $path)
    {
        $handler = $this->openFileForWriting($path);
        $this->writeToFile($handler, $content);
        @fclose($handler);
    }