📋 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
35 lines
666 B
PHP
35 lines
666 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Auth;
|
|
|
|
interface MustVerifyEmail
|
|
{
|
|
/**
|
|
* Determine if the user has verified their email address.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hasVerifiedEmail();
|
|
|
|
/**
|
|
* Mark the given user's email as verified.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function markEmailAsVerified();
|
|
|
|
/**
|
|
* Send the email verification notification.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function sendEmailVerificationNotification();
|
|
|
|
/**
|
|
* Get the email address that should be used for verification.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getEmailForVerification();
|
|
}
|