]> BookStack Code Mirror - bookstack/blob - app/Activity/Notifications/Handlers/PageUpdateNotificationHandler.php
ef71dccbfb50e277a76336cd117006f8a6f44f74
[bookstack] / app / Activity / Notifications / Handlers / PageUpdateNotificationHandler.php
1 <?php
2
3 namespace BookStack\Activity\Notifications\Handlers;
4
5 use BookStack\Activity\Models\Loggable;
6
7 class PageUpdateNotificationHandler implements NotificationHandler
8 {
9     public function handle(string $activityType, Loggable|string $detail): void
10     {
11         // TODO
12     }
13 }