| 1 | <?php |
||
| 9 | class IntegerRangeQueryCriteria implements QueryCriteriaInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var int |
||
| 13 | */ |
||
| 14 | private $min; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var int |
||
| 18 | */ |
||
| 19 | private $max; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return int |
||
| 23 | */ |
||
| 24 | 1 | public function getMin() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @param int $min |
||
| 31 | */ |
||
| 32 | 2 | public function setMin($min) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return int |
||
| 39 | */ |
||
| 40 | 1 | public function getMax() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @param int $max |
||
| 47 | */ |
||
| 48 | 2 | public function setMax($max) |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @inheritDoc |
||
| 55 | */ |
||
| 56 | 2 | public function shouldBeApplied() |
|
| 60 | } |
||
| 61 |