]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/3rdparty/htmlpurifier/HTMLPurifier/Token/End.php
remove autoload section in composer.json
[github/wallabag/wallabag.git] / inc / 3rdparty / htmlpurifier / HTMLPurifier / Token / End.php
CommitLineData
d4949327
NL
1<?php\r
2\r
3/**\r
4 * Concrete end token class.\r
5 *\r
6 * @warning This class accepts attributes even though end tags cannot. This\r
7 * is for optimization reasons, as under normal circumstances, the Lexers\r
8 * do not pass attributes.\r
9 */\r
10class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag\r
11{\r
12 /**\r
13 * Token that started this node.\r
14 * Added by MakeWellFormed. Please do not edit this!\r
15 * @type HTMLPurifier_Token\r
16 */\r
17 public $start;\r
18\r
19 public function toNode() {\r
20 throw new Exception("HTMLPurifier_Token_End->toNode not supported!");\r
21 }\r
22}\r
23\r
24// vim: et sw=4 sts=4\r