Page MenuHomePhorge

PhabricatorQueryConstraint.php
No OneTemporary

Size
659 B
Referenced Files
None
Subscribers
None

PhabricatorQueryConstraint.php

<?php
final class PhabricatorQueryConstraint extends Phobject {
const OPERATOR_AND = 'and';
const OPERATOR_OR = 'or';
const OPERATOR_NOT = 'not';
const OPERATOR_NULL = 'null';
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

Mime Type
text/x-php
Expires
Tue, Jun 17, 5:00 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
225934
Default Alt Text
PhabricatorQueryConstraint.php (659 B)

Event Timeline