- Issue created by @bbrala
In ✨ Add support for Sequentially constraint Active we introduced the SequentiallyConstraint. This is usefull to communicate errors in a more usefull fasion. So for example:
# file: block.schema.yml
theme:
type: string
label: 'Theme'
constraints:
NotBlank: []
ExtensionName: []
ExtensionExists: theme
Here it could first say "Should not be blank", then if that is valid "Invalid extension name", then "Extension does not exist". Instead of just printing all of those.
Go through all contraints that consist of multiple contraints and update those to SequentiallyConstraint where is makes sense. Let's do that in child issues.
Active
11.0 🔥
other