1: <?php
2: /**
3: * Wei Framework
4: *
5: * @copyright Copyright (c) 2008-2015 Twin Huang
6: * @license http://opensource.org/licenses/mit-license.php MIT License
7: */
8:
9: namespace Wei\Validator;
10:
11: /**
12: * Check if the input is less than (<) the specified value
13: *
14: * @author Twin Huang <twinhuang@qq.com>
15: */
16: class LessThan extends EqualTo
17: {
18: protected $invalidMessage = '%name% must be less than %value%';
19:
20: protected $negativeMessage = '%name% must not be less than %value%';
21:
22: /**
23: * {@inheritdoc}
24: */
25: protected function doCompare($input)
26: {
27: return $input < $this->value;
28: }
29: }
30: