]> BookStack Code Mirror - bookstack/blob - app/Activity/Notifications/Handlers/NotificationHandler.php
Notifications: Started activity->notification core framework
[bookstack] / app / Activity / Notifications / Handlers / NotificationHandler.php
1 <?php
2
3 namespace BookStack\Activity\Notifications\Handlers;
4
5 use BookStack\Activity\Models\Loggable;
6
7 interface NotificationHandler
8 {
9     /**
10      * Run this handler.
11      */
12     public function handle(string $activityType, string|Loggable $detail): void;
13 }