File indexing completed on 2024-05-12 06:02:06

0001 <?php
0002 
0003 /**
0004  * Concrete end token class.
0005  *
0006  * @warning This class accepts attributes even though end tags cannot. This
0007  * is for optimization reasons, as under normal circumstances, the Lexers
0008  * do not pass attributes.
0009  */
0010 class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag
0011 {
0012     /**
0013      * Token that started this node.
0014      * Added by MakeWellFormed. Please do not edit this!
0015      * @type HTMLPurifier_Token
0016      */
0017     public $start;
0018 
0019     public function toNode() {
0020         throw new Exception("HTMLPurifier_Token_End->toNode not supported!");
0021     }
0022 }
0023 
0024 // vim: et sw=4 sts=4