Both the $myVar assignment in line 1 and the $higher assignment in line 2
are dead. The first because $myVar is never used and the second because
$higher is always overwritten for every possible time line.
Loading history...
46
47
return (new MailMessage)->view(
48
'emails.verify',
49
['user' => $this->user]
50
);
51
}
52
53
/**
54
* Get the array representation of the notification.
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.