1 | <?php |
||
20 | class StrlenMin extends AbstractStrlen |
||
21 | { |
||
22 | /** |
||
23 | * |
||
24 | * Validates that a value is no longer than a certain length. |
||
25 | * |
||
26 | * @param object $subject The subject to be filtered. |
||
27 | * |
||
28 | * @param string $field The subject field name. |
||
29 | * |
||
30 | * @param mixed $min The value must have at least this many characters. |
||
31 | * |
||
32 | * @return bool True if valid, false if not. |
||
33 | * |
||
34 | */ |
||
35 | 17 | public function __invoke($subject, $field, $min) |
|
44 | } |
||
45 |