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
/**
17
* @param string $chatId
18
* @param string $eventUrl
19
* @param string $message
20
*/
21
public function __construct(
22
string $chatId,
23
string $message = '',
24
string $eventUrl = ''
25
)
26
{
27
$this->chatId = $chatId;
28
$this->eventUrl = $eventUrl;
29
$this->message = $message;
30
}
31
32
/**
33
* @return string
34
*/
35
public function getChatId(): string
36
{
37
return $this->chatId;
38
}
39
40
/**
41
* @param string $eventUrl
42
* @return void
43
*/
44
public function setEventUrl(string $eventUrl): void