to = $conf['to']; $this->subject = $conf['subject']; $this->pattern = $conf['pattern']; } public function notify($event): void { if (preg_match($this->pattern, $event['message']) != 0) { mail($this->to, $this->subject, $event['message']); } } } ?>