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