for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace gulch\Minify\Processor;
use gulch\Minify\Contract\ProcessorInterface;
// Remove comments from HTML Code (non-MSIE conditionals)
class HtmlCommentsRemover extends Replacer implements ProcessorInterface
{
public function getReplacePatternData(): array
return [
'{\s*<!--[^\[<>].*(?<!!)-->\s*}msU' => ''
];
}