Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91972019
DiffusionMergedCommitsQuery.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, Nov 16, 06:50
Size
505 B
Mime Type
text/x-php
Expires
Mon, Nov 18, 06:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22355211
Attached To
rPH Phabricator
DiffusionMergedCommitsQuery.php
View Options
<?php
abstract
class
DiffusionMergedCommitsQuery
extends
DiffusionQuery
{
private
$limit
=
PHP_INT_MAX
;
final
public
static
function
newFromDiffusionRequest
(
DiffusionRequest
$request
)
{
return
self
::
newQueryObject
(
__CLASS__
,
$request
);
}
final
public
function
loadMergedCommits
()
{
return
$this
->
executeQuery
();
}
final
public
function
setLimit
(
$limit
)
{
$this
->
limit
=
$limit
;
return
$this
;
}
final
public
function
getLimit
()
{
return
$this
->
limit
;
}
}
Event Timeline
Log In to Comment