Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
80 | public function setOperator($operator) { |
||
81 | if (null !== $operator && false === array_key_exists($operator, QueryBuilderEnumerator::enumOperators())) { |
||
82 | throw new UnexpectedValueException(sprintf("The operator \"%s\" is invalid", $operator)); |
||
83 | } |
||
84 | $this->operator = $operator; |
||
85 | return $this; |
||
86 | } |
||
87 | |||
99 |