v-wordpress-plugin-updater/v-update-api/vendor/respect/validation/library/Rules/MinAge.php
2026-04-06 09:47:05 -04:00

29 lines
634 B
PHP

<?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;
}
}