PageRenderTime 47ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/htmlpurifier/HTMLPurifier/Token/End.php

https://bitbucket.org/moodle/moodle
PHP | 24 lines | 8 code | 3 blank | 13 comment | 0 complexity | be28605493676b328a2c6531ccf13545 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-2.1, BSD-3-Clause, MIT, GPL-3.0
  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