/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
- <?php
- /**
- * Concrete end token class.
- *
- * @warning This class accepts attributes even though end tags cannot. This
- * is for optimization reasons, as under normal circumstances, the Lexers
- * do not pass attributes.
- */
- class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag
- {
- /**
- * Token that started this node. Added by MakeWellFormed. Please
- * do not edit this!
- */
- public $start;
- }
- // vim: et sw=4 sts=4