ChildDefHarness.php 314 B

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