MatthiasMullie\Minify\CSS::stripEmptyTags PHP Method

stripEmptyTags() protected method

Strip comments from source code.
protected stripEmptyTags ( string $content ) : string
$content string
return string
    protected function stripEmptyTags($content)
    {
        return preg_replace('/(^|\\}|;)[^\\{\\};]+\\{\\s*\\}/', '\\1', $content);
    }