Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
70 | public function getOperator() |
||
71 | { |
||
72 | if (!empty($this->getInput()['from']) && !empty($this->getInput()['to'])) { |
||
73 | return FilterOperator::OPERATOR_BETWEEN; |
||
74 | } elseif (empty($this->getInput()['to'])) { |
||
75 | return FilterOperator::OPERATOR_GTE; |
||
76 | } else { |
||
77 | return FilterOperator::OPERATOR_LTE; |
||
78 | } |
||
79 | } |
||
80 | } |
||
81 |