MINOR Moving HTMLCleaner interface to sapphire (related to Diff class)

This commit is contained in:
Ingo Schommer 2011-03-30 16:24:32 +13:00
parent 8e6a38559e
commit fb4efaa17e

View File

@ -1,16 +0,0 @@
<?php
/**
* Base class for HTML cleaning classes.
*
* @package cms
* @subpackage misc
*/
abstract class HTMLCleaner extends Object {
/**
* Passed $content, return HTML that has been tidied.
* @return string $content HTML, tidied
*/
public abstract function cleanHTML($content);
}
?>