1 | <?php |
||
10 | class NewUserEmail extends Notification implements ShouldQueue |
||
11 | { |
||
12 | use Queueable; |
||
13 | protected $user, $hash; |
||
14 | |||
15 | /** |
||
16 | * Create a new notification instance. |
||
17 | * |
||
18 | * @return void |
||
|
|||
19 | */ |
||
20 | 2 | public function __construct($user, $hash) |
|
26 | |||
27 | /** |
||
28 | * Get the notification's delivery channels. |
||
29 | * |
||
30 | * @param mixed $notifiable |
||
31 | * @return array |
||
32 | */ |
||
33 | 2 | public function via(/** @scrutinizer ignore-unused */$notifiable) |
|
37 | |||
38 | /** |
||
39 | * Get the mail representation of the notification. |
||
40 | * |
||
41 | * @param mixed $notifiable |
||
42 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
43 | */ |
||
44 | public function toMail( |
||
55 | |||
56 | /** |
||
57 | * Get the array representation of the notification. |
||
58 | * |
||
59 | * @param mixed $notifiable |
||
60 | * @return array |
||
61 | */ |
||
62 | public function toArray( |
||
70 | } |
||
71 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.