Completed
Branch master (465d33)
by Marcel
03:19
created
src/Notifications/ConfirmEmail.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/Traits/RegistersUsers.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.