13 lines
282 B
PHP
13 lines
282 B
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Auth\Notifications\VerifyEmail as VerifyEmailNotification;
|
|
|
|
class VerifyEmail extends VerifyEmailNotification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
}
|