@@ -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 | { |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace BeyondCode\EmailConfirmation\Traits; |
| 4 | 4 | |
| 5 | -use Illuminate\Http\Request; |
|
| 6 | 5 | use Illuminate\Auth\Events\Registered; |
| 6 | +use Illuminate\Http\Request; |
|
| 7 | 7 | |
| 8 | 8 | trait RegistersUsers |
| 9 | 9 | { |