Viewing File: /home/ubuntu/code_review/phabricator/src/aphront/response/AphrontHTMLResponse.php

<?php

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

}
Back to Directory File Manager