for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ctw\Middleware\HtmlMinifierMiddleware\Adapter\WyriHaximusAdapter;
use Ctw\Middleware\HtmlMinifierMiddleware\Adapter\AbstractAdapter as ParentAbstractAdapter;
class AbstractWyriHaximusAdapter extends ParentAbstractAdapter
{
protected function postProcess(string $htmlMinified): string
return $htmlMinified;
}