mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 09:22:40 +01:00
17 lines
302 B
PHP
17 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @group aphront
|
||
|
*/
|
||
|
abstract class AphrontHTMLResponse extends AphrontResponse {
|
||
|
|
||
|
public function getHeaders() {
|
||
|
$headers = array(
|
||
|
array('Content-Type', 'text/html; charset=UTF-8'),
|
||
|
);
|
||
|
$headers = array_merge(parent::getHeaders(), $headers);
|
||
|
return $headers;
|
||
|
}
|
||
|
|
||
|
}
|