Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F545607
PhabricatorQueryConstraint.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
795 B
Referenced Files
None
Subscribers
None
PhabricatorQueryConstraint.php
View Options
<?php
final
class
PhabricatorQueryConstraint
extends
Phobject
{
const
OPERATOR_AND
=
'and'
;
const
OPERATOR_OR
=
'or'
;
const
OPERATOR_NOT
=
'not'
;
const
OPERATOR_NULL
=
'null'
;
const
OPERATOR_ANCESTOR
=
'ancestor'
;
const
OPERATOR_EMPTY
=
'empty'
;
const
OPERATOR_ONLY
=
'only'
;
const
OPERATOR_ANY
=
'any'
;
private
$operator
;
private
$value
;
public
function
__construct
(
$operator
,
$value
)
{
$this
->
operator
=
$operator
;
$this
->
value
=
$value
;
}
public
function
setOperator
(
$operator
)
{
$this
->
operator
=
$operator
;
return
$this
;
}
public
function
getOperator
()
{
return
$this
->
operator
;
}
public
function
setValue
(
$value
)
{
$this
->
value
=
$value
;
return
$this
;
}
public
function
getValue
()
{
return
$this
->
value
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 12:55 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
122477
Default Alt Text
PhabricatorQueryConstraint.php (795 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment