mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-01 11:12:18 +08:00
29 lines
634 B
PHP
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;
|
|
}
|
|
}
|