/include/htmlpurifier/library/HTMLPurifier/Token/End.php

https://bitbucket.org/jhunsinfotech/blue-blues · PHP · 19 lines · 5 code · 2 blank · 12 comment · 0 complexity · 6dc6cdb4e980b6ffb9bb18ae73236ca9 MD5 · raw file

  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