| 1 | <?php |
||
| 8 | class IntegerCriteria implements CriteriaInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var int |
||
| 12 | */ |
||
| 13 | private $integer; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return int |
||
| 17 | */ |
||
| 18 | 1 | public function getInteger() |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param int $integer |
||
| 25 | */ |
||
| 26 | 2 | public function setInteger($integer) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 2 | public function shouldBeApplied() |
|
| 38 | } |
||
| 39 |