mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
13 lines
213 B
PHP
13 lines
213 B
PHP
|
<?php
|
||
|
|
||
|
class HTMLPurifier_InjectorHarness extends HTMLPurifier_StrategyHarness
|
||
|
{
|
||
|
|
||
|
function setUp() {
|
||
|
parent::setUp();
|
||
|
$this->obj = new HTMLPurifier_Strategy_MakeWellFormed();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|