1 | <?php |
||
6 | class UploadValidator extends Validator |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * Check the dimensions of a file image. |
||
11 | * |
||
12 | * @param array $check Value to check. |
||
13 | * @param int $height Max height dimension. |
||
14 | * @param int $width Max width dimension. |
||
15 | * |
||
16 | * @return bool |
||
17 | */ |
||
18 | public static function maxDimension($check, $height, $width) |
||
38 | } |
||
39 |