mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-23 08:51:53 +00:00
2c955af135
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
20 lines
269 B
PHP
20 lines
269 B
PHP
<?php
|
|
|
|
/**
|
|
* Interchange component class describing namespaces.
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_Interchange_Namespace
|
|
{
|
|
|
|
/**
|
|
* Name of namespace defined.
|
|
*/
|
|
public $namespace;
|
|
|
|
/**
|
|
* HTML description.
|
|
*/
|
|
public $description;
|
|
|
|
}
|