mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
11 lines
288 B
PHP
11 lines
288 B
PHP
|
<?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 {}
|