BookStack/app/Activity/Notifications/Handlers/CommentCreationNotificationHandler.php

15 lines
331 B
PHP
Raw Normal View History

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