Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118249836
AphrontPlainTextResponse.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jun 18, 18:34
Size
435 B
Mime Type
text/x-php
Expires
Fri, Jun 20, 18:34 (2 d)
Engine
blob
Format
Raw Data
Handle
26797406
Attached To
rPH Phabricator
AphrontPlainTextResponse.php
View Options
<?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
);
}
}
Event Timeline
Log In to Comment