123456789101112131415161718192021 |
- <?php
- namespace Illuminate\Contracts\Validation;
- use Closure;
- /**
- * @deprecated see ValidationRule
- */
- interface InvokableRule
- {
- /**
- * Run the validation rule.
- *
- * @param string $attribute
- * @param mixed $value
- * @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
- * @return void
- */
- public function __invoke(string $attribute, mixed $value, Closure $fail);
- }
|