mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-12 15:51:17 +01:00
16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
class HTMLPurifier_StrategyHarness extends HTMLPurifier_ComplexHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->func = 'execute';
|
|
$this->to_tokens = true;
|
|
$this->to_html = true;
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|