mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 15:25:45 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
23 lines
475 B
PHP
23 lines
475 B
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
class Max extends AbstractRule
|
|
{
|
|
public $maxValue;
|
|
public $inclusive;
|
|
|
|
public function __construct($maxValue, $inclusive = false)
|
|
{
|
|
$this->maxValue = $maxValue;
|
|
$this->inclusive = $inclusive;
|
|
}
|
|
|
|
public function validate($input)
|
|
{
|
|
if ($this->inclusive) {
|
|
return $input <= $this->maxValue;
|
|
} else {
|
|
return $input < $this->maxValue;
|
|
}
|
|
}
|
|
}
|