StrategyHarness.php 265 B

123456789101112131415
  1. <?php
  2. class HTMLPurifier_StrategyHarness extends HTMLPurifier_ComplexHarness
  3. {
  4. function setUp() {
  5. parent::setUp();
  6. $this->func = 'execute';
  7. $this->to_tokens = true;
  8. $this->to_html = true;
  9. }
  10. }
  11. // vim: et sw=4 sts=4