blob: 510437ec78845360d820fc7f1057f9ff0cf58f9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace Digitigrade\Notification;
interface Notifyable {
public function toJsonReference(): mixed;
public static function fromJsonReference(mixed $reference): self;
public function getNotificationTitle(): string;
public function getNotificationTitleLink(): ?string;
public function getNotificationBody(): ?string;
public function getNotificationImageUrl(): ?string;
public function getNotificationImageLink(): ?string;
}
|