mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
de6e024464
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1545 48356398-32a2-884e-a903-53898d9a118a
14 lines
294 B
PHP
14 lines
294 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
|
|
{
|
|
|
|
}
|