Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
20 | class EmailLog extends LogOutputAbstract{ |
||
21 | |||
22 | protected $mailer; |
||
23 | |||
24 | /** @noinspection PhpMissingParentConstructorInspection */ |
||
25 | /** |
||
26 | * EmailLog constructor. |
||
27 | * |
||
28 | * @param \chillerlan\Logger\LogOptions $options |
||
29 | * @param \PHPMailer\PHPMailer\PHPMailer $mailer |
||
30 | */ |
||
31 | public function __construct(LogOptions $options, PHPMailer $mailer){ |
||
34 | } |
||
35 | |||
36 | protected function __log(string $level, string $message, array $context = null){ |
||
41 |