1<?php 2 3abstract class AphrontHTMLResponse extends AphrontResponse { 4 5 public function getHeaders() { 6 $headers = array( 7 array('Content-Type', 'text/html; charset=UTF-8'), 8 ); 9 $headers = array_merge(parent::getHeaders(), $headers); 10 return $headers; 11 } 12 13} 14 15