Page MenuHomestyx hydra

AphrontPlainTextResponse.php
No OneTemporary

AphrontPlainTextResponse.php

<?php
/**
* @group aphront
*/
final class AphrontPlainTextResponse extends AphrontResponse {
public function setContent($content) {
$this->content = $content;
return $this;
}
public function buildResponseString() {
return $this->content;
}
public function getHeaders() {
$headers = array(
array('Content-Type', 'text/plain'),
);
return array_merge(parent::getHeaders(), $headers);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Nov 26, 8:34 PM (20 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
346984
Default Alt Text
AphrontPlainTextResponse.php (435 B)

Event Timeline