Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116560026
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, Jun 7, 15:11
Size
505 B
Mime Type
text/x-php
Expires
Mon, Jun 9, 15:11 (2 d)
Engine
blob
Format
Raw Data
Handle
26640033
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