mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
13 lines
232 B
PHP
13 lines
232 B
PHP
|
<?php
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\View\Parsers\HTMLCleaner;
|
||
|
|
||
|
class SiteTreeTest_NullHtmlCleaner extends HTMLCleaner implements TestOnly
|
||
|
{
|
||
|
public function cleanHTML($html)
|
||
|
{
|
||
|
return $html;
|
||
|
}
|
||
|
}
|