1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-19 04:11:20 +02:00
This commit is contained in:
Ryan Grove
2007-05-12 00:56:04 +00:00
parent 67ea9c9992
commit e5362b0b46
2 changed files with 41 additions and 11 deletions

10
lib/htmlmin.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
class HTMLMin {
protected $html = '';
// -- Public Instance Methods ----------------------------------------------
public function __construct($html) {
$this->input = $html;
}
}
?>