mirror of
https://github.com/Respect/Validation.git
synced 2026-03-18 08:09:51 +01:00
Introduces a Markdown linter for checking the Changelog format. "See Also" was transformed into a section to make it easier to handle it with the `Content` class. The "Related" linter was simplified to reflect that change too. An additional "alignment" parameter was added to markdown table generators, allowing the padding and headers to be explicitly marked with a specific left (-1), middle (0) or right(1) alignment. Existing files were fixed using the `fix` option after the changes.
52 lines
1.2 KiB
Markdown
52 lines
1.2 KiB
Markdown
<!--
|
|
SPDX-FileCopyrightText: (c) Respect Project Contributors
|
|
SPDX-License-Identifier: MIT
|
|
-->
|
|
|
|
# Positive
|
|
|
|
- `Positive()`
|
|
|
|
Validates whether the input is a positive number.
|
|
|
|
```php
|
|
v::positive()->assert(1);
|
|
// Validation passes successfully
|
|
|
|
v::positive()->assert(0);
|
|
// → 0 must be a positive number
|
|
|
|
v::positive()->assert(-15);
|
|
// → -15 must be a positive number
|
|
```
|
|
|
|
## Templates
|
|
|
|
### `Positive::TEMPLATE_STANDARD`
|
|
|
|
| Mode | Template |
|
|
| ---------: | :---------------------------------------- |
|
|
| `default` | {{subject}} must be a positive number |
|
|
| `inverted` | {{subject}} must not be a positive number |
|
|
|
|
## Template placeholders
|
|
|
|
| Placeholder | Description |
|
|
| ----------- | ---------------------------------------------------------------- |
|
|
| `subject` | The validated input or the custom validator name (if specified). |
|
|
|
|
## Categorization
|
|
|
|
- Math
|
|
- Numbers
|
|
|
|
## Changelog
|
|
|
|
| Version | Description |
|
|
| ------: | :----------------------------------- |
|
|
| 2.0.0 | Does not validate non-numeric values |
|
|
| 0.3.9 | Created |
|
|
|
|
## See Also
|
|
|
|
- [Negative](Negative.md)
|