@@ -15,7 +15,7 @@ |
||
15 | 15 | * Get the notification's delivery channels. |
16 | 16 | * |
17 | 17 | * @param mixed $notifiable |
18 | - * @return array |
|
18 | + * @return string[] |
|
19 | 19 | */ |
20 | 20 | public function via($notifiable) |
21 | 21 | { |
@@ -3,9 +3,9 @@ |
||
3 | 3 | namespace BeyondCode\EmailConfirmation\Notifications; |
4 | 4 | |
5 | 5 | use Illuminate\Bus\Queueable; |
6 | -use Illuminate\Notifications\Notification; |
|
7 | 6 | use Illuminate\Contracts\Queue\ShouldQueue; |
8 | 7 | use Illuminate\Notifications\Messages\MailMessage; |
8 | +use Illuminate\Notifications\Notification; |
|
9 | 9 | |
10 | 10 | class ConfirmEmail extends Notification implements ShouldQueue |
11 | 11 | { |
@@ -3,9 +3,9 @@ |
||
3 | 3 | namespace BeyondCode\EmailConfirmation\Traits; |
4 | 4 | |
5 | 5 | use BeyondCode\EmailConfirmation\Events\Confirmed; |
6 | +use Illuminate\Auth\Events\Registered; |
|
6 | 7 | use Illuminate\Http\Request; |
7 | 8 | use Illuminate\Support\Str; |
8 | -use Illuminate\Auth\Events\Registered; |
|
9 | 9 | |
10 | 10 | trait RegistersUsers |
11 | 11 | { |