mirror of
https://github.com/moodle/moodle.git
synced 2025-07-27 17:30:53 +02:00
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
|
|
{
|
|
|
|
}
|