End.php 440 B

12345678910111213141516171819
  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. Added by MakeWellFormed. Please
  13. * do not edit this!
  14. */
  15. public $start;
  16. }
  17. // vim: et sw=4 sts=4