The ArrayRules class of this library implements the Illuminate\Contracts\Validation\Rule interface from laravel/framework.
However, this interface states:
@deprecated see ValidationRule
Which I believe references the class Illuminate/Contracts/Validation/ValidationRule.php
As such it would be good to already make changes to switch over to the new interface (if possible).
However, this might require a new major version as probably not all versions of laravel/framework have this interface (unsure).
The
ArrayRulesclass of this library implements theIlluminate\Contracts\Validation\Ruleinterface fromlaravel/framework.However, this interface states:
@deprecated see ValidationRuleWhich I believe references the class
Illuminate/Contracts/Validation/ValidationRule.phpAs such it would be good to already make changes to switch over to the new interface (if possible).
However, this might require a new major version as probably not all versions of
laravel/frameworkhave this interface (unsure).