| 1 | <?php |
||
| 9 | class NumberQueryCriteria implements QueryCriteriaInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var float |
||
| 13 | */ |
||
| 14 | private $number; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return float |
||
| 18 | */ |
||
| 19 | public function getNumber() |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param float $number |
||
| 26 | */ |
||
| 27 | public function setNumber($number) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritDoc |
||
| 34 | */ |
||
| 35 | public function shouldBeApplied() |
||
| 40 | } |
||
| 41 |