Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit c22e8c3

Browse files
committed
chore: small All documentation improvements
1 parent 50087e2 commit c22e8c3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/03-rules-all.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Each element must implement a `RuleInterface`, so it is possible to use a single
3030

3131
type: `string` default: `At "{{ key }}": {{ message }}`
3232

33-
Message that will be shown if at least one element of an array is invalid according to the given constraints.
33+
Message that will be shown if at least one element of an array is invalid according to the given `constraints`.
3434
Check the [Custom Messages]() section for more information.
3535

3636
```php
@@ -40,9 +40,9 @@ Validator::all([Validator::notBlank()])->assert([1, 2, ''], 'Test');
4040

4141
The following parameters are available:
4242

43-
| Parameter | Description |
44-
|-----------------|---------------------------------------|
45-
| `{{ value }}` | The current invalid array value |
46-
| `{{ name }}` | Name of the value being validated |
47-
| `{{ key }}` | The array key of the invalid value |
48-
| `{{ message }}` | The rule message of the invalid value |
43+
| Parameter | Description |
44+
|-----------------|-----------------------------------------------|
45+
| `{{ value }}` | The current invalid value |
46+
| `{{ name }}` | Name of the value being validated |
47+
| `{{ key }}` | The array key of the invalid array element |
48+
| `{{ message }}` | The rule message of the invalid array element |

0 commit comments

Comments
 (0)