mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 06:11:01 +01:00
15 lines
319 B
PHP
15 lines
319 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Mime Type: text/html
|
||
|
* Mime Type: application/html+xml
|
||
|
*
|
||
|
* @author Nathan Good <me@nategood.com>
|
||
|
*/
|
||
|
|
||
|
namespace Httpful\Handlers;
|
||
|
|
||
|
class XHtmlHandler extends MimeHandlerAdapter
|
||
|
{
|
||
|
// @todo add html specific parsing
|
||
|
// see DomDocument::load http://docs.php.net/manual/en/domdocument.loadhtml.php
|
||
|
}
|