The trait Illuminate\Notifications\Notifiable requires the property $email which is not provided by Skater4\LaravelSentryNot...otifableTelegramChannel.
Loading history...
11
12
private $chatId;
13
private $eventUrl;
14
private $message;
15
16
public function __construct(
17
string $chatId,
18
string $message = '',
19
string $eventUrl = ''
20
)
21
{
22
$this->chatId = $chatId;
23
$this->eventUrl = $eventUrl;
24
$this->message = $message;
25
}
26
27
public function getChatId(): string
28
{
29
return $this->chatId;
30
}
31
32
public function setEventUrl(string $eventUrl): void