1 | <?php |
||
7 | class ImageWidth extends AbstractRule |
||
8 | { |
||
9 | const OPTION_MAX = 'max'; |
||
10 | const OPTION_MIN = 'min'; |
||
11 | |||
12 | const MESSAGE = 'The image should be at least {min} pixels wide'; |
||
13 | |||
14 | const LABELED_MESSAGE = '{label} should be at least {min} pixels wide'; |
||
15 | |||
16 | protected $options = [ |
||
17 | self::OPTION_MAX => 1000000, |
||
18 | self::OPTION_MIN => 0, |
||
19 | ]; |
||
20 | |||
21 | 3 | public function validate($value, string $valueIdentifier = null) |
|
38 | } |
||
39 |