| 1 | <?php |
||
| 11 | class RangeValidator extends Validator { |
||
| 12 | |||
| 13 | protected $min; |
||
| 14 | protected $max; |
||
| 15 | |||
| 16 | public function __construct(){ |
||
| 19 | |||
| 20 | public function validate($value) { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritDoc} |
||
| 27 | * @see \Ubiquity\contents\validation\validators\Validator::getParameters() |
||
| 28 | */ |
||
| 29 | public function getParameters(): array { |
||
| 32 | |||
| 33 | } |
||
| 34 | |||
| 35 |