|
123456789101112131415161718192021222324 |
- <?php
-
-
- class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag
- {
-
-
- public $start;
-
- public function toNode() {
- throw new Exception("HTMLPurifier_Token_End->toNode not supported!");
- }
- }
-
-
|