📋 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
17 lines
316 B
PHP
17 lines
316 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Validation;
|
|
|
|
use Illuminate\Validation\Validator;
|
|
|
|
interface ValidatorAwareRule
|
|
{
|
|
/**
|
|
* Set the current validator.
|
|
*
|
|
* @param \Illuminate\Validation\Validator $validator
|
|
* @return $this
|
|
*/
|
|
public function setValidator(Validator $validator);
|
|
}
|