Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92442669
DiffusionGitLFSResponse.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, Nov 20, 08:31
Size
777 B
Mime Type
text/x-php
Expires
Fri, Nov 22, 08:31 (2 d)
Engine
blob
Format
Raw Data
Handle
22442982
Attached To
rPH Phabricator
DiffusionGitLFSResponse.php
View Options
<?php
final
class
DiffusionGitLFSResponse
extends
AphrontResponse
{
private
$content
;
public
static
function
newErrorResponse
(
$code
,
$message
)
{
// We can optionally include "request_id" and "documentation_url" in
// this response.
return
id
(
new
self
())
->
setHTTPResponseCode
(
$code
)
->
setContent
(
array
(
'message'
=>
$message
,
));
}
public
function
setContent
(
array
$content
)
{
$this
->
content
=
phutil_json_encode
(
$content
);
return
$this
;
}
public
function
buildResponseString
()
{
return
$this
->
content
;
}
public
function
getHeaders
()
{
$headers
=
array
(
array
(
'Content-Type'
,
'application/vnd.git-lfs+json'
),
);
return
array_merge
(
parent
::
getHeaders
(),
$headers
);
}
}
Event Timeline
Log In to Comment