mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-03-12 01:28:44 +00:00
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;
|
|
|
|
}
|