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
}
}