PageRenderTime 37ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/synergylearning/campusconnect
PHP | 24 lines | 8 code | 3 blank | 13 comment | 0 complexity | 5029c29d5745b33b87dde8b304fb2119 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, LGPL-3.0, GPL-3.0, LGPL-2.1, Apache-2.0, BSD-3-Clause, AGPL-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