Add array items validation and wildcard support. #1340
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ok, i know that you've asked me to stop making PRs on validation, but after a lot of thought i came to the conclusion that it's impossible to make Validator intelligent enough so that it'll know when and how to validate an array and its contents.
Simple example. Validate following array against these rules:
I think it's just not possible unless you have at least two attributes and some serious magic in Validator going on. This PR tries to make it easy to use and to understand for a developer without serious docs crunching or voodoo magic.
First rule makes sure our
input
attribute is an array with at least three items. Check.Second rules uses
array_select
and wildcrads to check each item of the array if it's a string and if it has at least 3 characters. Check.I think it's pretty simple and intuitive.
Based upon my two other PRs: #1134 and #833.