📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
22 lines
453 B
PHP
22 lines
453 B
PHP
<?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, ?string=): \Illuminate\Translation\PotentiallyTranslatedString $fail
|
|
* @return void
|
|
*/
|
|
public function __invoke(string $attribute, mixed $value, Closure $fail);
|
|
}
|