Bolt\Tests\Extension\SnippetsTest::minify PHP Метод

minify() защищенный Метод

This method does a simple minification of the HTML, as it removes whitespace between tags.
protected minify ( $html )
    protected function minify($html)
    {
        $search = ['/\\>[^\\S]+/s', '/[^\\S]+\\</s', '/(\\s)+/s'];
        $replace = ['>', '<', '\\1'];
        $html = preg_replace($search, $replace, $this->html($html));
        return $html;
    }