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