mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
Move documentation about "Comparable Values"
This documentation is in the "rules" directory, but it should be outside that directory since the "rules" directory is supposed to only have documentation about rules. Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
parent
6e4927a621
commit
b815fdff92
6 changed files with 5 additions and 5 deletions
|
|
@ -11,7 +11,7 @@ v::intVal()->between(10, 20)->validate(20); // true
|
|||
```
|
||||
|
||||
Validation makes comparison easier, check out our supported
|
||||
[comparable values](ComparableValues.md).
|
||||
[comparable values](../comparable-values.md).
|
||||
|
||||
Message template for this validator includes `{{minValue}}` and `{{maxValue}}`.
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ v::greaterThan(10)->validate(9); // false
|
|||
```
|
||||
|
||||
Validation makes comparison easier, check out our supported
|
||||
[comparable values](ComparableValues.md).
|
||||
[comparable values](../comparable-values.md).
|
||||
|
||||
Message template for this validator includes `{{compareTo}}`.
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ v::lessThan(10)->validate(10); // false
|
|||
```
|
||||
|
||||
Validation makes comparison easier, check out our supported
|
||||
[comparable values](ComparableValues.md).
|
||||
[comparable values](../comparable-values.md).
|
||||
|
||||
Message template for this validator includes `{{compareTo}}`.
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ v::max(10)->validate(11); // false
|
|||
```
|
||||
|
||||
Validation makes comparison easier, check out our supported
|
||||
[comparable values](ComparableValues.md).
|
||||
[comparable values](../comparable-values.md).
|
||||
|
||||
Message template for this validator includes `{{compareTo}}`.
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ v::intVal()->min(10)->validate(11); // true
|
|||
```
|
||||
|
||||
Validation makes comparison easier, check out our supported
|
||||
[comparable values](ComparableValues.md).
|
||||
[comparable values](../comparable-values.md).
|
||||
|
||||
Message template for this validator includes `{{compareTo}}`.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue