mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-03-11 17:18:44 +00:00
13 lines
205 B
PHP
13 lines
205 B
PHP
<?php
|
|
|
|
class HTMLPurifier_InjectorHarness extends HTMLPurifier_StrategyHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->obj = new HTMLPurifier_Strategy_MakeWellFormed();
|
|
}
|
|
|
|
}
|
|
|