laravel-validator
laravel-validator copied to clipboard
Fix/validate update custom rule
When using custom validation rules AbstractValidator::parserValidationRules() fails because it is expecting all rules to be defined as a string. Laravel Validator allows you to define custom rules as Rule objects. In this case AbstractValidator::parserValidationRules() should pass them through as-is.