InvokableRule.php
TLDR
This file defines the InvokableRule
interface, which is deprecated and is a part of the Illuminate\Contracts\Validation
namespace.
Methods
None
Classes
None
<?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);
}