| @@ 144-148 (lines=5) @@ | ||
| 141 | return $this->applyFilterDate($row, $filter); |
|
| 142 | } else if ($filter instanceof FilterMultiSelect) { |
|
| 143 | return $this->applyFilterMultiSelect($row, $filter); |
|
| 144 | } else if ($filter instanceof FilterDateRange) { |
|
| 145 | return $this->applyFilterDateRange($row, $filter); |
|
| 146 | } else if ($filter instanceof FilterRange) { |
|
| 147 | return $this->applyFilterRange($row, $filter); |
|
| 148 | } |
|
| 149 | ||
| 150 | $condition = $filter->getCondition(); |
|
| 151 | ||
| @@ 42-46 (lines=5) @@ | ||
| 39 | $this->applyFilterSelect($filter); |
|
| 40 | } else if ($filter instanceof Filter\FilterDate) { |
|
| 41 | $this->applyFilterDate($filter); |
|
| 42 | } else if ($filter instanceof Filter\FilterDateRange) { |
|
| 43 | $this->applyFilterDateRange($filter); |
|
| 44 | } else if ($filter instanceof Filter\FilterRange) { |
|
| 45 | $this->applyFilterRange($filter); |
|
| 46 | } |
|
| 47 | } |
|
| 48 | } |
|
| 49 | } |
|