Файл vendor/laravel/framework/src/Illuminate/Auth/Listeners/SendEmailVerificationNotification.php Вес запакованого файла 252b (252 b) Вес распакованого файла: 526b (526 b) Метод сжатия: 8
<?php
namespace Illuminate\Auth\Listeners;
use Illuminate\Auth\Events\Registered;
use Illuminate\Contracts\Auth\MustVerifyEmail;
class SendEmailVerificationNotification
{
/**
* Handle the event.
*
* @param \Illuminate\Auth\Events\Registered $event
* @return void
*/
public function handle(Registered $event)
{
if ($event->user instanceof MustVerifyEmail && ! $event->user->hasVerifiedEmail()) {
$event->user->sendEmailVerificationNotification();
}
}
}