docs/validators/Finite.md
Finite()Validates if the input is a finite number.
v::finite()->assert('10');
// Validation passes successfully
v::finite()->assert(10);
// Validation passes successfully
Finite::TEMPLATE_STANDARD| Mode | Template |
|---|---|
default | {{subject}} must be a finite number |
inverted | {{subject}} must not be a finite number |
| Placeholder | Description |
|---|---|
subject | The validated input or the custom validator name (if specified). |
| Version | Description |
|---|---|
| 1.0.0 | Created |