Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98079013
PhabricatorRepositoryGitLFSRefQuery.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, Jan 9, 13:55
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 13:55 (2 d)
Engine
blob
Format
Raw Data
Handle
23501096
Attached To
rPH Phabricator
PhabricatorRepositoryGitLFSRefQuery.php
View Options
<?php
final
class
PhabricatorRepositoryGitLFSRefQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$repositoryPHIDs
;
private
$objectHashes
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withRepositoryPHIDs
(
array
$phids
)
{
$this
->
repositoryPHIDs
=
$phids
;
return
$this
;
}
public
function
withObjectHashes
(
array
$hashes
)
{
$this
->
objectHashes
=
$hashes
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
PhabricatorRepositoryGitLFSRef
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
repositoryPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'repositoryPHID IN (%Ls)'
,
$this
->
repositoryPHIDs
);
}
if
(
$this
->
objectHashes
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'objectHash IN (%Ls)'
,
$this
->
objectHashes
);
}
return
$where
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorDiffusionApplication'
;
}
}
Event Timeline
Log In to Comment