1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-10 16:14:18 +02:00

phpcs: enable psr2

This commit is contained in:
Elan Ruusamäe
2016-10-16 16:46:43 +03:00
parent 0cc631c5a9
commit 5fb7ea1ed1
44 changed files with 175 additions and 109 deletions

View File

@@ -16,7 +16,8 @@
* @package Minify
* @author Stephen Clay <steve@mrclay.org>
*/
class Minify_HTML {
class Minify_HTML
{
/**
* @var boolean
*/
@@ -40,7 +41,8 @@ class Minify_HTML {
*
* @return string
*/
public static function minify($html, $options = array()) {
public static function minify($html, $options = array())
{
$min = new self($html, $options);
return $min->process();