Page MenuHome GnuPG

AphrontPlainTextResponse.php
No OneTemporary

AphrontPlainTextResponse.php

<?php
final class AphrontPlainTextResponse extends AphrontResponse {
private $content;
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; charset=utf-8'),
);
return array_merge(parent::getHeaders(), $headers);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Nov 17, 9:26 PM (1 d, 10 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8e/ea/1c2d1d64a95a0cab826d7e8306f1

Event Timeline