ILIAS
trunk Revision v11.0_alpha-1831-g8615d53dadb
|
Public Member Functions | |
__construct (private readonly Factory $dataFactory, private readonly Language $language, private readonly In $in) | |
isGreaterThan (int $minimum) | |
Creates a constraint that can be used to check if an integer value is greater than the defined lower limit. More... | |
isLessThan (int $maximum) | |
Creates a constraint that can be used to check if an integer value is less than the defined upper limit. More... | |
isGreaterThanOrEqual (int $minimum) | |
Creates a constraint that can be used to check if an integer value is greater than or equal the defined lower limit. More... | |
isLessThanOrEqual (int $maximum) | |
Creates a constraint that can be used to check if an integer value is less than or equal the defined upper limit. More... | |
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 upper bounds. More... | |
ILIAS\Refinery\Integer\Group::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 upper bounds.
The ranges are inclusive [$lower_bound, $upper_bound].
Definition at line 77 of file Group.php.
References ILIAS\Refinery\Integer\Group\isGreaterThanOrEqual(), and ILIAS\Refinery\Integer\Group\isLessThanOrEqual().
ILIAS\Refinery\Integer\Group::isGreaterThan | ( | int | $minimum | ) |
Creates a constraint that can be used to check if an integer value is greater than the defined lower limit.
Definition at line 41 of file Group.php.
References ILIAS\UI\examples\Symbol\Glyph\Language\language().
ILIAS\Refinery\Integer\Group::isGreaterThanOrEqual | ( | int | $minimum | ) |
Creates a constraint that can be used to check if an integer value is greater than or equal the defined lower limit.
Definition at line 59 of file Group.php.
References ILIAS\UI\examples\Symbol\Glyph\Language\language().
Referenced by ILIAS\Refinery\Integer\Group\isBetween().
ILIAS\Refinery\Integer\Group::isLessThan | ( | int | $maximum | ) |
Creates a constraint that can be used to check if an integer value is less than the defined upper limit.
Definition at line 50 of file Group.php.
References ILIAS\UI\examples\Symbol\Glyph\Language\language().
ILIAS\Refinery\Integer\Group::isLessThanOrEqual | ( | int | $maximum | ) |
Creates a constraint that can be used to check if an integer value is less than or equal the defined upper limit.
Definition at line 68 of file Group.php.
References ILIAS\UI\examples\Symbol\Glyph\Language\language().
Referenced by ILIAS\Refinery\Integer\Group\isBetween().