End.php 588 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Concrete end token class.
  4. *
  5. * @warning This class accepts attributes even though end tags cannot. This
  6. * is for optimization reasons, as under normal circumstances, the Lexers
  7. * do not pass attributes.
  8. */
  9. class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag
  10. {
  11. /**
  12. * Token that started this node.
  13. * Added by MakeWellFormed. Please do not edit this!
  14. * @type HTMLPurifier_Token
  15. */
  16. public $start;
  17. public function toNode() {
  18. throw new Exception("HTMLPurifier_Token_End->toNode not supported!");
  19. }
  20. }
  21. // vim: et sw=4 sts=4