Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | public function toMail(): ?Message |
||
44 | { |
||
45 | // return $this->mail->to($this->toUser->getEmail()) |
||
46 | // ->subject('Password Updated') |
||
47 | // ->content($this->message()); |
||
48 | |||
49 | return $this->mail->to('[email protected]') |
||
50 | ->subject('Password Updated') |
||
51 | ->content($this->message()); |
||
52 | } |
||
54 |