📋 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
26 lines
438 B
PHP
26 lines
438 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Validation;
|
|
|
|
/**
|
|
* @deprecated see ValidationRule
|
|
*/
|
|
interface Rule
|
|
{
|
|
/**
|
|
* Determine if the validation rule passes.
|
|
*
|
|
* @param string $attribute
|
|
* @param mixed $value
|
|
* @return bool
|
|
*/
|
|
public function passes($attribute, $value);
|
|
|
|
/**
|
|
* Get the validation error message.
|
|
*
|
|
* @return string|array
|
|
*/
|
|
public function message();
|
|
}
|