Issues (465)

app/Notifications/VerifyNotification.php (2 issues)

1
<?php
2
3
namespace App\Notifications;
4
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Contracts\Queue\ShouldQueue;
7
use Illuminate\Notifications\Messages\MailMessage;
8
use Illuminate\Notifications\Notification;
9
10
class VerifyNotification extends Notification
11
{
12
    use Queueable;
13
14
    /**
15
     * Create a new notification instance.
16
     *
17
     * @return void
18
     */
19
    public function __construct()
20
    {
21
        //
22
    }
23
24
    /**
25
     * Get the notification's delivery channels.
26
     *
27
     * @param  mixed  $notifiable
28
     * @return array
29
     */
30
    public function via($notifiable)
0 ignored issues
show
The parameter $notifiable is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

30
    public function via(/** @scrutinizer ignore-unused */ $notifiable)

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
31
    {
32
        return ['mail'];
33
    }
34
35
    /**
36
     * Get the mail representation of the notification.
37
     *
38
     * @param  mixed  $notifiable
39
     * @return \Illuminate\Notifications\Messages\MailMessage
40
     */
41
    public function toMail($notifiable)
42
    {
43
        $param = [
44
            'id' => $notifiable->getKey(),
45
            'hash' => sha1($notifiable->getEmailForVerification()),
46
        ];
47
48
        $url = env('FRONTEND_URL').'/verify-email?';
49
50
        foreach ($param as $key => $params) {
51
            $url .= "{$key}={$params}&";
52
        }
53
54
        return (new MailMessage)
55
                    ->line('THE VERIFY EMAIL')
56
                    ->action('Verify email', $url)
57
                    ->line('Thank you for using our application!');
58
    }
59
60
    /**
61
     * Get the array representation of the notification.
62
     *
63
     * @param  mixed  $notifiable
64
     * @return array
65
     */
66
    public function toArray($notifiable)
0 ignored issues
show
The parameter $notifiable is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

66
    public function toArray(/** @scrutinizer ignore-unused */ $notifiable)

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
67
    {
68
        return [
69
            //
70
        ];
71
    }
72
}
73