19declare(strict_types=1);
31 private readonly
Factory $dataFactory,
33 private readonly In $in
79 return $this->in->series([
__construct(private readonly Factory $dataFactory, private readonly Language $language, private readonly In $in)
isLessThan(int $maximum)
Creates a constraint that can be used to check if an integer value is less than the defined upper lim...
isGreaterThan(int $minimum)
Creates a constraint that can be used to check if an integer value is greater than the defined lower ...
isBetween(int $lower_bound, int $upper_bound)
Creates a constraint that can be used to check if an integer value is between the given lower and upp...
isLessThanOrEqual(int $maximum)
Creates a constraint that can be used to check if an integer value is less than or equal the defined ...
isGreaterThanOrEqual(int $minimum)
Creates a constraint that can be used to check if an integer value is greater than or equal the defin...
A constraint encodes some resrtictions on values.