Files
phabricator/src/aphront/response/AphrontHTMLResponse.php
2012-11-29 05:39:55 -08:00

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;
}
}