1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2026-01-03 23:42:28 +03:00
Files
bookstack/app/Activity/Notifications/Handlers/CommentCreationNotificationHandler.php

14 lines
286 B
PHP

<?php
namespace BookStack\Activity\Notifications\Handlers;
use BookStack\Activity\Models\Loggable;
class CommentCreationNotificationHandler implements NotificationHandler
{
public function handle(string $activityType, Loggable|string $detail): void
{
// TODO
}
}