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
|