Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F968168
DiffusionLowLevelQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
518 B
Referenced Files
None
Subscribers
None
DiffusionLowLevelQuery.php
View Options
<?php
abstract
class
DiffusionLowLevelQuery
extends
Phobject
{
private
$repository
;
abstract
protected
function
executeQuery
();
public
function
setRepository
(
PhabricatorRepository
$repository
)
{
$this
->
repository
=
$repository
;
return
$this
;
}
public
function
getRepository
()
{
return
$this
->
repository
;
}
public
function
execute
()
{
if
(!
$this
->
getRepository
())
{
throw
new
Exception
(
'Call setRepository() before execute()!'
);
}
return
$this
->
executeQuery
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 3:41 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
226002
Default Alt Text
DiffusionLowLevelQuery.php (518 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment