Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F115407653
DiffusionRawDiffQuery.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
Sat, May 31, 19:00
Size
985 B
Mime Type
text/x-php
Expires
Mon, Jun 2, 19:00 (2 d)
Engine
blob
Format
Raw Data
Handle
26488915
Attached To
rPH Phabricator
DiffusionRawDiffQuery.php
View Options
<?php
abstract
class
DiffusionRawDiffQuery
extends
DiffusionQuery
{
private
$request
;
private
$timeout
;
private
$linesOfContext
=
65535
;
private
$againstCommit
;
final
public
static
function
newFromDiffusionRequest
(
DiffusionRequest
$request
)
{
return
parent
::
newQueryObject
(
__CLASS__
,
$request
);
}
final
public
function
loadRawDiff
()
{
return
$this
->
executeQuery
();
}
final
public
function
setTimeout
(
$timeout
)
{
$this
->
timeout
=
$timeout
;
return
$this
;
}
final
public
function
getTimeout
()
{
return
$this
->
timeout
;
}
final
public
function
setLinesOfContext
(
$lines_of_context
)
{
$this
->
linesOfContext
=
$lines_of_context
;
return
$this
;
}
final
public
function
getLinesOfContext
()
{
return
$this
->
linesOfContext
;
}
final
public
function
setAgainstCommit
(
$value
)
{
$this
->
againstCommit
=
$value
;
return
$this
;
}
final
public
function
getAgainstCommit
()
{
return
$this
->
againstCommit
;
}
}
Event Timeline
Log In to Comment