mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
18 lines
348 B
PHP
18 lines
348 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
class Purifier
|
|
{
|
|
public static function getInstance()
|
|
{
|
|
return new self();
|
|
}
|
|
|
|
public function purify(&$content)
|
|
{
|
|
$content = Rhymix\Framework\Filters\HTMLFilter::clean($content);
|
|
}
|
|
|
|
}
|
|
/* End of file : Purifier.class.php */
|
|
/* Location: ./classes/security/Purifier.class.php */
|