Page MenuHomec4science

AphrontHTMLResponse.php
No OneTemporary

File Metadata

Created
Sat, Nov 23, 07:59

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

Event Timeline