mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-13 00:38:42 +00:00
12b811d749
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
22 lines
292 B
PHP
22 lines
292 B
PHP
<?php
|
|
|
|
/**
|
|
* Interchange component class describing namespaces.
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_Interchange_Namespace
|
|
{
|
|
|
|
/**
|
|
* Name of namespace defined.
|
|
*/
|
|
public $namespace;
|
|
|
|
/**
|
|
* HTML description.
|
|
*/
|
|
public $description;
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|