Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F115472962
PhabricatorQueryConstraint.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
Sun, Jun 1, 06:19
Size
699 B
Mime Type
text/x-php
Expires
Tue, Jun 3, 06:19 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26513600
Attached To
rPH Phabricator
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'
;
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
;
}
}
Event Timeline
Log In to Comment