Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109996493
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
Thu, Apr 24, 07:11
Size
424 B
Mime Type
text/x-php
Expires
Sat, Apr 26, 07:11 (2 d)
Engine
blob
Format
Raw Data
Handle
25690928
Attached To
rPH Phabricator
AphrontPlainTextResponse.php
View Options
<?php
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; charset=utf-8'
),
);
return
array_merge
(
parent
::
getHeaders
(),
$headers
);
}
}
Event Timeline
Log In to Comment