| 1 | <?php |
||
| 25 | class AtLeast extends CountValidatorAbstract |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Checks if the validator can accept an additional nth call |
||
| 29 | * |
||
| 30 | * @param int $n |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | 8 | public function isEligible($n) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Validate the call count against this validator |
||
| 40 | * |
||
| 41 | * @param int $n |
||
| 42 | * @return bool |
||
| 43 | */ |
||
| 44 | 15 | public function validate($n) |
|
| 62 | } |
||
| 63 |