| 1234567891011121314151617181920212223242526272829 |
- <?php
- /*
- * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
- * SPDX-License-Identifier: MIT
- */
- declare(strict_types=1);
- namespace Respect\Validation\Rules;
- /**
- * Validates a minimum age for a given date.
- *
- * @author Emmerson Siqueira <emmersonsiqueira@gmail.com>
- * @author Henrique Moody <henriquemoody@gmail.com>
- * @author Jean Pimentel <jeanfap@gmail.com>
- * @author Kennedy Tedesco <kennedyt.tw@gmail.com>
- */
- final class MinAge extends AbstractAge
- {
- /**
- * {@inheritDoc}
- */
- protected function compare(int $baseDate, int $givenDate): bool
- {
- return $baseDate >= $givenDate;
- }
- }
|