-
Notifications
You must be signed in to change notification settings - Fork 11.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[12.x] Stops validation if a custom rule specifies it #54635
base: 12.x
Are you sure you want to change the base?
[12.x] Stops validation if a custom rule specifies it #54635
Conversation
It feels a bit odd to have an interface called |
@taylorotwell I did consider that It could just be an interface. The user might want to force that condition only in circumstances based on whether they felt it was risky or not to continue validation of that field was where my mind was at. I'm thinking where using AI/ML and you've got a score from a service and don't want to continue processing a file further. Maybe a new name for the interface would help. |
What about |
We use the term |
Why not name it: |
I think @flavio-schoute is the best solution. We can later add Bailable interface that allows a method for conditional bail? |
formatting formatting
c9d0367
to
362f574
Compare
Changes
Illuminate\Contracts\Validation\StopUponFailure
contract.\Illuminate\Validation\Validator::shouldStopValidating()
to accept two arguments, the new one being the rule\Illuminate\Validation\Validator::shouldStopValidating()
to check if it's an invokable rule and if the custom rule it's using implements theIlluminate\Contracts\Validation\StopUponFailure
contract.Why
This would allow for more control over when validation rules fail and when they should continue. Instead of only relying on
bail
when one rule can trigger a failure to run all further attributes.Example use: