blob: 7a7826fdde453e6a9cc5ef6c273f1a5b6805bae2 (
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;
}
|