1 | <?php |
||
8 | class IntegerRangeCriteria implements CriteriaInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var int |
||
12 | */ |
||
13 | private $min; |
||
14 | |||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | private $max; |
||
19 | |||
20 | /** |
||
21 | * @return int |
||
22 | */ |
||
23 | 1 | public function getMin() |
|
27 | |||
28 | /** |
||
29 | * @param int $min |
||
30 | */ |
||
31 | 2 | public function setMin($min) |
|
35 | |||
36 | /** |
||
37 | * @return int |
||
38 | */ |
||
39 | 1 | public function getMax() |
|
43 | |||
44 | /** |
||
45 | * @param int $max |
||
46 | */ |
||
47 | 2 | public function setMax($max) |
|
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | 2 | public function shouldBeApplied() |
|
59 | } |
||
60 |