respect-validation/library/Rules/Between.php
Henrique Moody 02b70bf1cb
Move Template to the Message namespace
That way, everything related to messages would stay in the same
namespace.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-02-09 19:50:25 +01:00

41 lines
1 KiB
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\ComponentException;
use Respect\Validation\Helpers\CanCompareValues;
use Respect\Validation\Message\Template;
#[Template(
'{{name}} must be between {{minValue}} and {{maxValue}}',
'{{name}} must not be between {{minValue}} and {{maxValue}}',
)]
final class Between extends AbstractEnvelope
{
use CanCompareValues;
public function __construct(mixed $minValue, mixed $maxValue)
{
if ($this->toComparable($minValue) >= $this->toComparable($maxValue)) {
throw new ComponentException('Minimum cannot be less than or equals to maximum');
}
parent::__construct(
new AllOf(
new Min($minValue),
new Max($maxValue)
),
[
'minValue' => $minValue,
'maxValue' => $maxValue,
]
);
}
}