21 lines
292 B
PHP
Executable file
21 lines
292 B
PHP
Executable file
<?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
|