📋 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
15 lines
251 B
PHP
15 lines
251 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Warning;
|
|
|
|
class IPV6Deprecated extends Warning
|
|
{
|
|
public const CODE = 13;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->message = 'Deprecated form of IPV6';
|
|
$this->rfcNumber = 5321;
|
|
}
|
|
}
|