Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function toMail($notifiable) |
||
|
|||
23 | { |
||
24 | $mailMessage = (new MailMessage) |
||
25 | ->error() |
||
26 | ->subject("The certificate for {$this->event->monitor->url} will expire soon.") |
||
27 | ->line("The certificate for {$this->event->monitor->url} will expire in {$this->ssl_certificate_expiration_date->diffInDays()} days"); |
||
28 | |||
29 | return $mailMessage; |
||
30 | } |
||
31 | |||
49 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.