mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
17 lines
231 B
PHP
17 lines
231 B
PHP
<?php
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
class Purifier
|
|
{
|
|
public static function getInstance()
|
|
{
|
|
return new self();
|
|
}
|
|
|
|
public function purify(&$content)
|
|
{
|
|
$content = Rhymix\Framework\Filters\HTMLFilter::clean((string)$content);
|
|
}
|
|
}
|