This commit is contained in:
@ -13,6 +13,7 @@ use InvalidArgumentException;
|
||||
class Ntfy implements NotificationInterface
|
||||
{
|
||||
private string $topic = 'default';
|
||||
|
||||
/**
|
||||
* Initialize with configuration.
|
||||
*
|
||||
@ -45,6 +46,9 @@ class Ntfy implements NotificationInterface
|
||||
return $this->topic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Push a message with Ntfy
|
||||
*/
|
||||
public function send(string $title, string $message): void
|
||||
{
|
||||
if (strlen($title) < 1 || strlen($title) >= 256) {
|
||||
|
Reference in New Issue
Block a user